/* Estilos para hacer la imagen ocupar toda la pantalla */
body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  background-color: black; /* Fondo negro para toda la página */
}

.full-screen-image {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.full-screen-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
