html {
    background-color: hsl(30, 54%, 90%);
}
body {
    display: flex;
    justify-content: center;
    align-content: center;
    flex-direction: column;
    align-items: center;
}
.container {
    width: 800px;
    background-color: white;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 40px;
    margin-top: 80px;
    margin-bottom: 80px;
}
img {
    width: 100%;
    border-radius: 15px;
}
h1 {
    font-family: 'Young Serif', serif;
    font-weight: 400;
}
p {
    font-family: 'Outfit', sans-serif;
    color: hsl(30, 10%, 34%)
}
.resume {
    background-color: hsl(330, 100%, 98%);
    padding: 20px;
    border-radius: 10px;
    font-family: 'Outfit', sans-serif;
}
h3 {
    margin: 0px;
    padding-bottom: 20px;
    color: hsl(332, 51%, 32%);
}
ul, ol {
    margin: 0px;
    color: hsl(30, 10%, 34%);
    font-family: 'Outfit', sans-serif;
}
li {
    padding-left: 30px;
    line-height: 30px;
}
h2 {
    font-family: 'Young Serif', serif;
    font-weight: 400;
    font-size: 26px;
}
ol li::marker {
    font-weight: bold;
  }
.nutrition-info {
    width: 100%;
    display: flex;
}
.nutrition-names {
    width: 50%;
    font-family: 'Outfit', sans-serif;
    padding-left: 35px;
}
.nutrition-values {
    width: 50%;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
}
#calories {
    border-bottom: solid 2px hsl(330, 100%, 98%);
}
#carbs {
    border-bottom: solid 2px hsl(330, 100%, 98%);
}
#protein {
    border-bottom: solid 2px hsl(330, 100%, 98%);
}
hr {
    color: hsl(330, 100%, 98%);
}
@media (max-width: 600px) {
    .container {
        margin: 0px;
        padding: 0px;
        padding-bottom: 40px;
    }
    body {
        margin: 0px;
    }
    #omelette {
        border-radius: 0px;
    }
    h1 {
        padding: 20px;
        padding-bottom: 0px;
    }
    #header {
        padding: 0px 30px 0px 20px;
    }
    .resume {
        margin: 20px;
        padding: 20px;
    }
    .ingredients {
        padding: 0 20px 0 20px;
    }
    hr {
        margin: 20px 20px 0 20px;
    }
    .instructions {
        padding: 0 20px 0 20px;
    }
    .nutrition {
        padding: 0 20px 0 20px;
    }
}
.attribution { 
    font-size: 11px; 
    text-align: center;
    display: flex;
     

}
.attribution a { 
    color: hsl(228, 45%, 44%); 
}
