body, html {
  height: 100%;
  margin: 0;
  background: #003745;
}
.container {
  display: flex; /* Utilisation de Flexbox pour le centrage */
  justify-content: center; /* Centrage horizontal */
  align-items: center; /* Centrage vertical */
  height: 100%;
}
.container img {
  max-width: 30%;
}