/* ==========================================================
   LILAS & ROSALIE
   Landing page
========================================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    background:#FFF4E8;
    color:#76747C;

    font-family:"Montserrat",sans-serif;
    font-weight:400;

    line-height:1.8;

    -webkit-font-smoothing:antialiased;
    text-rendering:optimizeLegibility;

}

/* ==========================================================
   Structure
========================================================== */

.page{

    width:100%;

    padding:42px 24px 56px;

}

.en-tete{

    text-align:center;

    margin-bottom:26px;

}

.contenu{

    width:100%;
    max-width:540px;

    margin:0 auto;

}

/* ==========================================================
   Logo
========================================================== */

.logo{

    width:195px;
    max-width:70%;

    height:auto;

}

/* ==========================================================
   Bandeau
========================================================== */

.bandeau{

    display:block;

    width:100%;
    height:auto;

    margin-bottom:34px;

}

/* ==========================================================
   Texte
========================================================== */

.texte{

    padding-left:36px;
    padding-right:36px;

}

h1{

    color:#AB97AB;

    font-family:Baskerville,"Times New Roman",serif;

    font-weight:400;

    font-size:1.82rem;

    line-height:1.18;

    text-align:left;

    margin-bottom:22px;

}

p{

    font-size:1.05rem;

    font-weight:400;

    margin-bottom:18px;

}

.texte p:last-child{

    margin-bottom:26px;

}

/* ==========================================================
   Bouton
========================================================== */

.bouton{

    display:table;

    margin:6px auto 18px;

    padding:6px 15px;

    background:#AB97AB;

    color:white;

    text-decoration:none;

    font-family:Baskerville,"Times New Roman",serif;

    font-size:1.25rem;

    border-radius:5px;

    transition:all .25s ease;

}

.bouton:hover{

    filter:brightness(1.06);

}

/* ==========================================================
   Instagram
========================================================== */

.instagram{

    display:block;

    text-align:center;

    margin-top:-2px;

}

.instagram img{

    width:34px;

    height:auto;

    opacity:.85;

    transition:.25s;

}

.instagram:hover img{

    opacity:1;

}

/* ==========================================================
   Responsive
========================================================== */

@media (max-width:600px){

    .page{

        padding:34px 20px 48px;

    }

    .contenu{

        max-width:100%;

    }

    .texte{

        padding-left:22px;
        padding-right:22px;

    }

    h1{

        font-size:1.65rem;

    }

    p{

        font-size:1rem;

    }

}