*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body{
    background-color: hsl(30, 54%, 90%);
    display: flex;
    justify-content: center;
    height: auto;
    padding: 8rem 0;
}

.container{
    background-color: hsl(0, 0%, 100%);
    width: 650px;
    border-radius: 16px;
    padding: 2rem;
}

.top-img{
    height: 275px;
    width: 100%;
    border-radius: 12px;
}

.content-1 h1{
    color: hsl(24, 5%, 18%);
    font-family: 'Young Serif', serif;
    font-weight: 500;
    margin: 1rem 0;
}

.content-1 p{
    margin-bottom: 1.5rem;
    color: hsl(30, 10%, 34%);
    font-family: 'Outfit', sans-serif;
    font-size: 0.875rem;
    font-weight: 400;
}

.content-2{
    padding: 1.5rem 2.5rem;
    font-family: 'Outfit', sans-serif;
    font-size: 0.875rem;
    background-color: hsl(330, 100%, 98%);
    color: hsl(30, 10%, 34%);
    border-radius: 8px;
}

.content-2 h3{
    color: hsl(332, 51%, 32%);
    margin-left: -1rem;
    margin-bottom: 0.5rem;
}

.content-2 span{
    font-weight: 700;
}

.content-2 ul{
    line-height: 1.75rem;
}

.content-2 ul li{
    padding-left: 0.875rem;
    font-weight: 400;
}

.content-2 ul li::marker{
    color: hsl(332, 51%, 32%);
}

.content-3{
    margin: 2rem 0;
}

.content-3 h2{
    margin-bottom: 0.5rem;
    color: hsl(14, 45%, 36%);
    font-family: 'Young Serif', serif;
    font-weight: 500;
}

.content-3 ul{
    margin-left: 1.5rem;
    line-height: 2rem;
    font-family: 'Outfit', sans-serif;
    color: hsl(30, 10%, 34%);
    
}

.content-3 ul li{
    padding-left: 1rem;
    font-weight: 400;
}

.content-3 ul li::marker{
    color: hsl(14, 45%, 36%);
}

.content-4{
    margin: 2rem 0;
}

.content-4 h2{
    color: hsl(14, 45%, 36%);
    font-family: 'Young Serif', serif;
    font-weight: 500;
}

.content-4 ol{
    margin-top: 1rem;
    font-family: 'Outfit', sans-serif;
    margin-left: 1.5rem;
}

.content-4 span{
    font-weight: 700;
}

.content-4 ol li{
    padding-left: 1rem;
    margin-bottom: 0.5rem;
    word-spacing: 3px;
    color: hsl(30, 10%, 34%);
    font-weight: 400;
}

.content-4 ol li::marker{
    color: hsl(14, 45%, 36%);
    font-weight: 800;
}

.content-5 h2{
    margin: 1.5rem 0 1rem 0;
    color: hsl(14, 45%, 36%);
    font-family: 'Young Serif', serif;
    font-weight: 500;
}

.content-5 p{
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    color: hsl(30, 10%, 34%);
    margin-bottom: 1.25rem;
    font-weight: 400;
}

.row{
    font-family: 'Outfit', sans-serif;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.label{
    font-weight: 500;
    color: hsl(30, 10%, 34%);
    margin: 1rem 0;
}

.value{
    font-weight: bold;
    color: hsl(14, 45%, 36%);
}

@media (max-width: 480px){
    body{
        padding: 0;
        max-height: none;
    }

    .container{
        width: 100%;
        border-radius: 0;
    }

    .top-img{
        border-radius: 0;
        margin-right: 10rem;
    }
}