/* ========================= */
/* RESET                     */
/* ========================= */

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

/* ========================= */
/* BODY                      */
/* ========================= */

body{

    font-family:'Montserrat',sans-serif;

    background:#ffffff;

    color:#143B73;

}

/* ========================= */
/* MAIN                      */
/* ========================= */

main{

    min-height:100vh;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    padding:40px 20px;

    box-sizing:border-box;

}

/* ========================= */
/* LOGO                      */
/* ========================= */

.logo{

    width:min(430px,85vw);

    height:auto;

    margin-bottom:45px;

}

/* ========================= */
/* TITULO                    */
/* ========================= */

h1{

    font-family:'Cormorant Garamond',serif;

    font-size:clamp(2.2rem,4vw,3rem);

    font-weight:600;

    color:#143B73;

    text-align:center;

}

/* ========================= */
/* SEPARADOR                 */
/* ========================= */

.separator{

    width:90px;

    height:3px;

    background:#F28C28;

    border-radius:30px;

    margin:28px 0 35px;

}

/* ========================= */
/* TEXTO                     */
/* ========================= */

p{

    width:min(650px,90vw);

    text-align:center;

    line-height:1.8;

    color:#56606c;

    font-size:clamp(1rem,1.1vw,1.15rem);

}

/* ========================= */
/* ULTIMA FRASE              */
/* ========================= */

.coming{

    margin-top:45px;

    font-weight:600;

    color:#143B73;

}
