/* ===================================
   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;
    text-align:center;
    padding:0 25px;
}

header h1{

    font-size:3.5rem;
    font-weight:400;
    margin-bottom:20px;
    letter-spacing:1px;
}

header p{

    max-width:620px;
    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 80px;
}

/* ===================================
   PLAYLIST CARD
=================================== */

section{

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

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

    padding:45px;

    border-radius:8px;

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

section h2{

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

    margin-bottom:18px;
}

section p{

    font-size:1.15rem;
    color:#5a4635;

    margin-bottom:35px;
}

iframe{

    width:100%;
    border:none;
    border-radius:14px;
}

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

footer{

    text-align:center;

    border-top:1px solid #8b6b53;

    margin-top:80px;

    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;
}

section{

    padding:28px;
}

section h2{

    font-size:2rem;
}

nav ul{

    gap:18px;
}

}