        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body,
        html {
            width: 100%;
            height: 100%;
            font-family: Arial, sans-serif;
        }

        /* CONTENEDOR GENERAL */
        .container {
            width: 100%;
            height: 100dvh;
            background-repeat: no-repeat;
            background-size: contain;
            background-position: top center;
            display: flex;
            justify-content: center;
            align-items: flex-start;
            position: relative;
            background-color: #E4007C;
        }

        /* TEXTO */
        .content {
            width: 100%;
            max-width: 600px;
            position: absolute;
            top: 75%;
            /* un poco más abajo del centro */
            transform: translateY(-50%);
            text-align: center;
            color: white;
            text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
            font-size: 18px;
            line-height: 1.4;
        }

        p {
            background-color: #37034F;
            
            border-radius: 12px;
            text-align: center;
            color: white;
            font-size: 18px;
            line-height: 1.3        }

        .content a {
            color: #bbbbbb;
            font-weight: bold;
            text-decoration: none;
        }

        /* IMAGEN DESKTOP */
        .container {
            background-image: url('arte pasos.jpg');
        }

        /* IMAGEN MÓVIL */
        @media (max-width: 768px) {
            .container {
                background-image: url('DIGI TEXT-100.jpg');
                background-size: contain;
                 background-color: #E4007C;
                /* 1081x1921 */
            }

            .content {
                top: 60%;
                /* Para compensar pantallas altas */
                font-size: 16px;
            }
        }

        /* Ajustes para pantallas MUY altas (iPhone modernos, Samsung Ultra) */
        @media (max-width: 500px) and (min-height: 900px) {
            .content {
                top: 70%;
            }
        }