body{
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    margin:0;
}
.header{
    display:flex;
    justify-content: space-between;
    align-items: center;
    background-color:#1f2937;
    padding: 16px 80px;
}
ul{
    list-style-type: none;
    display:flex;
    gap:16px;
}
a{
    text-decoration: none;
    color:#e5e7eb;
    font-size: 18px; 
}
.header-logo{
    font-size: 24px;
    color:#f9faf8;
}
.section-1{
    display:flex;
    align-items: center;
    padding:80px 200px;
    justify-content:center;
    background-color: #1f2937;
    gap:40px;
}
.section-1-left{
    max-width: 500px;
}
img{
    max-width:500px;
    height: auto;
}
h1{
    font-size: 48px;
    font-weight: 900;
    color:#f9faf8;
    margin:0px;
}
p{
    font-size: 18px;
    color:#e5e7eb;
}
.signup{
    background-color:#3882f6;
    color:#f9faf8;
    font-size:18px;
    border:none;
    border-radius:8px;
    padding: 8px 24px;
    font-weight: 600;
}
.fav-song-title{
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
    font-size: 36px;
    font-weight:900;
    color:#1f2937;
}
.section-2{
    padding: 60px 100px;
}
.card-carousel{
    display:flex;
    justify-content: center;
    gap:40px;
    flex-wrap: wrap;
}
.cards{
    width:200px;
}
.img-card{
    width: 200px;
    height: fit-content;
    border-radius:20px;
    border-style: solid;
    border-color:#3882f6;

}
.img-card-text{
    text-align: center;
}
.section-3{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #e5e7eb;
    padding:100px 200px;
}
.quote-content{
    display: flex;
    flex-direction: column;
}
#quote{
    font-size:36px;
    color:#1f2937;
    font-weight: 300;
    font-style: italic;
    margin:8px;
}
#author{
    align-self: flex-end;
    font-size: 24px;
    font-weight: 600;
}
.section-4{
    display: flex;
    align-items:center;
    padding: 80px 200px;
    gap:40px;
}
.blue-section{
    background-color: #3882f6;
    display:flex;
    justify-content: space-between;
    align-items:center;
    padding:40px 80px;
    border-radius: 20px;
    gap:16px;
    flex:1;
}
.call-to{
    font-size: 24px;
    font-weight: 900;
    color:#f9faf8;
}
#call-to-text{
    font-size: 18px;
    color:#e5e7eb;
}
.signup.translucent{
    background-color: rgba(56, 130, 246, 0.8);
    border-style: solid;
    border-color: #e5e7eb;
}
.footer{
    background-color: #1f2937;
    color:#e5e7eb;
    justify-content: center;
    display: flex;
    padding: 32px 0;
    gap: 32px;
}
