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

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

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

body{

    background:#ddd0ba;
    color:#35281d;

    font-family:"Cormorant Garamond", serif;
    line-height:1.8;
}

/* ===================================
   HEADER
=================================== */

header{

    max-width:900px;
    margin:90px auto 60px;
    padding:0 25px;

    text-align:center;
}

header h1{

    font-size:3.5rem;
    font-weight:400;

    margin-bottom:18px;

    letter-spacing:1px;
}

header p{

    max-width:650px;
    margin:auto;

    font-size:1.2rem;
    font-style:italic;

    color:#5a4635;
}

/* ===================================
   NAVIGATION
=================================== */

nav{

    border-top:1px solid #8b6b53;
    border-bottom:1px solid #8b6b53;

    margin-bottom:80px;
}

nav ul{

    display:flex;
    justify-content:center;
    flex-wrap:wrap;

    gap:30px;

    list-style:none;

    padding:18px 20px;
}

nav a{

    text-decoration:none;
    color:#35281d;

    font-size:1.05rem;

    transition:.3s;
}

nav a:hover{

    color:#8b5e3c;
}

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

main{

    max-width:900px;
    margin:auto;

    padding:0 25px 90px;
}

/* ===================================
   ABOUT CARD
=================================== */

.about-card{

    max-width:700px;
    margin:auto;

    background:rgba(255,255,255,.18);

    border:1px solid rgba(92,65,42,.2);

    border-radius:8px;

    padding:55px 45px;

    text-align:center;

    box-shadow:0 8px 30px rgba(0,0,0,.05);
}

.about-card h2{

    font-size:2.5rem;
    font-weight:400;

    margin-bottom:25px;
}

.about-card p{

    font-size:1.15rem;

    color:#5a4635;

    margin-bottom:18px;
}

.about-card p:last-child{

    margin-bottom:0;
}

/* ===================================
   FOOTER
=================================== */

footer{

    border-top:1px solid #8b6b53;

    text-align:center;

    padding:35px 20px;

    color:#5a4635;
}

footer p{

    margin:8px 0;
}

/* ===================================
   RESPONSIVE
=================================== */

@media(max-width:768px){

    header{

        margin-top:70px;
    }

    header h1{

        font-size:2.8rem;
    }

    header p{

        font-size:1.05rem;
    }

    nav ul{

        gap:18px;
    }

    .about-card{

        padding:35px 25px;
    }

    .about-card h2{

        font-size:2rem;
    }

    .about-card p{

        font-size:1.05rem;
    }

}