/**
* Template Name: JLunidos
*
*/

body {
    background-color: #FAF9F9;
    color:#757575;
    margin:0;
    font-family:'Archivo';
}

.site {
    max-width:1200px;
    margin:auto;
    padding:30px;
}

.logo {
    width:100px;
}

h1 {
    color: #5668bd;
    font-family: "Lato", sans-serif;
    font-weight: 900;
    font-style: bold;
    font-size:6rem;
    text-align:right;
    line-height: .9;
    margin:1rem 0;
}

p {
    text-align:right;
    font-size:1.2rem;
    line-height:1.2;
    max-width: 55%;
}

.description{
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.coming-soon {
    border:2px solid #757575;
    border-radius: 40px;
    padding:15px 40px;
    display: inline-block;
    text-align:right;
    margin-top:2rem;
}

.image {
    background-image: url(./assets/images/LJU_Imagen_Desktop.png);
    width:100%;
    height:500px;
    display: block;
    background-size: cover;
    background-repeat:no-repeat;
}

@media (max-width: 768px) {

    .site {
        padding:30px;
    }
    h1 {
        font-size: 3rem;
    }

    p {
        font-size:1.2rem;
    }
    .description {
        flex-direction: column;
        align-items: right;
    }
    .description p{
        max-width: 80%;        
    }

    .coming-soon {
        text-align: center;
        padding:15px 20px;
        display: block;;
    }

    .image {
        height: 370px;
        background-image: url(./assets/images/LJU_Imagen_Mobile.png);
    }
}   