 html, body {
            height: 100%;
            margin: 0;
        }

        body {
            display: flex;
            justify-content: center;
            align-items: center;
            background-color: black; /* Fondo NEGRO */
            font-family: sans-serif;
        }

        /* Estilo para la etiqueta picture:
           Nos aseguramos de que ocupe el ancho disponible y centre la imagen
           para que no rompa tu diseño flexbox original.
        */
        picture {
            display: flex;
            justify-content: center;
            width: 100%;
        }

        img {
            max-width: 95%; /* Ahora ocupa el 95% en móviles */
            height: auto;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            transition: all 0.3s ease-in-out;
            object-fit: cover;
        }

        /* Media Query: Tablet y PC */
        @media (min-width: 768px) {
            img {
                max-width: 95%; /* También ocupa el 95% en tablets y PC */
            }
        }