* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    overflow-x: hidden;
}

:root{
    --font-familiy-primary: 'JetBrains Mono';
}


.titulo{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 2.1rem;
}


.subtitulo{
    display: flex;
    justify-content: center;  
    align-items: center;
    width: 100%;
}

.subtitulo h1{
    font-size: 0.9rem;
    margin-top: 1.2rem;
    font-family: var(--font-familiy-primary);
}

.subtitulo{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-family: var(--font-familiy-primary);
}

.time{
    margin-top: 1.2rem;
}

.text{
    display: flex;
    justify-self: center;
    align-items: center;
    width: 100%;
    margin-top: 10rem;
}

.text p{
    text-align: left;
    padding: 0 18rem;
    font-family: var(--font-familiy-primary);
}

.contenedor-contacto{
    display: flex;
    flex-direction: row;
    margin-top: 5rem;
    margin-left: 18rem;
    margin-right: 18rem;
}

.enlace{
    width: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container-contacto{
     background-color: #36F080;

}


.enlace a{
    text-decoration: underline;
    color: #000;
    font-family: var(--font-familiy-primary);
    text-align: center;
    padding: 2rem;
    margin-left: 2rem;
}


.contacto-texto{
    font-family: var(--font-familiy-primary);
    width: 60%;
}

.footer{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20vh;
    margin-bottom: 10vh;
    font-family: var(--font-familiy-primary);
}

.texto-subrayado{
    text-decoration: underline;
}

.movil-contacto{
    display: none;
}


/* ========Responsive======== */
@media screen and (max-width: 768px) {
    .container{
        width: 100%;
    }
    .text{
        margin-top: 2rem !important;
    }

    .text p{
        padding: 0 2rem;
    }

    .contenedor-contacto{
        margin-left: 0rem;
        margin-right: 0;
        pad: 0 6rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

   
    .contacto-texto{
        width: 100%;
        padding: 2rem;
    }

    .enlace{
        width: 100%;
        padding: 2rem;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .enlace a{
        text-decoration: underline  ;
        padding: 0;
        text-align: center;
        margin: 0;
        font-weight: bold;
    }
    .footer{
        padding: 0 6rem;
    }

    .footer p{
        text-align: center;
    }

    .website-contacto{
        display: none !important;
    }

    .movil-contacto{
        display: block;
    }
}       