*{
    margin: 0;
    padding: 0;
    font-family: Outfit;
    box-sizing: border-box;
}

body{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 225vh;
    background-color: hsl(30, 54%, 90%);
    color: hsl(30, 10%, 34%);
}

.container{
    width: 100%;
    max-width: 725px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    padding: 35px;
    background-color: hsl(0, 0%, 100%);
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

img{
    width: 100%;
    margin-bottom: 10px;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

h1{
    font-family: Young Serif;
    font-size: 2.3  5rem;
    margin: 20px 0;
    color: hsl(24, 5%, 18%);
}

p{
    margin: 10px 0;
}

section{
    width: 100%;
    padding: 30px;
    margin: 30px 0;
    background-color: hsl(330, 100%, 98%);
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

h3{
    font-size: 1.35rem;
    color: hsl(332, 51%, 32%);
}

ul, ol{
    margin: 0 25px;
}

li{
    padding: 0 20px;
    margin: 10px 0;
}

ol li{
    counter-increment: list;
    list-style-type: none;
    position: relative;
}

/* thats from google to be honest */
li::before{
    color: hsl(30, 10%, 34%);
    font-weight: 700;
    content: counter(list) ".";
    left: -32px;
    position: absolute;
    text-align: right;
    width: 26px;
}

h2{
    font-size: 2rem;
}   

b{
    color: hsl(30, 10%, 34%);
}

h2{
    font-family: Young Serif;
    font-weight: 400;
    color: hsl(14, 45%, 36%);
    font-size: 1.75rem;
    margin: 5px
}

.divider{
    width: 100%;
    display: block;
    border: 1px solid hsl(30, 18%, 87%) ;
    margin: 25px 0;
    height: 1px;
} 

table{
    width: 100%;
    border-collapse: collapse;
    margin: 10px 0;
}

th{
    text-align: left;
    padding: 10px 30px;
    font-weight: 400;
}

tr{
    border-bottom: 1px solid hsl(30, 18%, 87%);
}

tr:last-child{
    border: none;
}

@media screen and (max-width: 375px) {
    img{
        margin: -35px 0 0 -35px;
        width: calc(100% + 70px);
        border-radius: 0;
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        -ms-border-radius: 0;
        -o-border-radius: 0;
}
}