body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    overflow: hidden; /* Evita scrollbars */
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000; /* Fondo negro para mejor contraste */
}

#image-container {
    width: 100%;
    height: 100%;
    position: relative;
    background-color: #000; /* Fondo negro si hay espacios vacíos */
}

#desktop-image, #mobile-image {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Centra la imagen */
    object-fit: contain; /* Ajusta la imagen al contenedor sin recortar */
}
