.attribution { 
  font-size: 11px; text-align: center;
  flex: 1;
  justify-content: center;
  color: hsl(332, 51%, 32%);
  font-family: "Young Serif", serif;
  font-size: 10px;
  font-weight: 400;
 }

.attribution a {
  text-decoration: none;
  color: hsl(332, 51%, 32%);
  transition: all 0.5s;
}

.attribution a:hover { 
  color: hsl(14, 45%, 36%);
}

body{
  background-color: hsl(30, 54%, 90%);
  display: flex;
}

.recipe{
  background-color: white;
}

.recipe-name{
  margin-top: 0px;
  font-family: "Young Serif", serif;
  font-size: 24px;
  font-weight: 400;
  color: hsl(24, 5%, 18%);
  margin-bottom: 8px;
}

.recipe-info{
  padding-top: 16px;
}

p{
  font-family: "Outfit", serif;
  font-size: 9px;
  margin-top: 0;
  color: hsl(30, 10%, 34%);
  font-weight: 400;
  line-height: 13px;
}

.preparation-time{
  margin-top: 24px;
  background-color: hsl(330, 100%, 98%);
  padding: 14px;
  border-radius: 7px;
}

h2{
  font-family: "Young Serif", serif;
  color: hsl(14, 45%, 36%);
  font-size: 16px;
  font-weight: 400;
}

h3{
  margin-top: 0;
  color: hsl(332, 51%, 32%);
  font-family: "Outfit", serif;
  font-weight: 600;
  font-size: 12px;
}

.bullet-heading{
  font-weight: 700;
}

ul{
  line-height: 8px;
  padding: 0;
  margin: 0px;
  padding-left: 14px;
  font-size: 9px;
  color: hsl(332, 51%, 32%);
  text-align: left;
}

li{
  padding-left: 7px;
}

ol{
  font-family: "Outfit", serif;
  font-weight: 700;
  padding: 0;
  margin: 0px;
  padding-left:14px;
  font-size: 9px;
  color: hsl(332, 51%, 32%);
  text-align: left;
}

.section{
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-bottom-color: hsl(30, 18%, 87%);
  padding-bottom: 9px;
}

.nutrient-column{
  padding: 7px;
  padding-left: 19px;
  padding-right: 19px;
  flex: 1;
  display: flex;
  flex-direction: row;
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-bottom-color: hsl(30, 18%, 87%)
}

.nutrient{
  color: hsl(30, 10%, 34%);
  font-weight: 400;
  display: inline-block;
  flex: 1;
}

.content{
  color: hsl(14, 45%, 36%);
  font-weight: 700;
  display: inline-block;
  flex: 1;
}

.nutrient,.content{
  font-family: "Outfit", serif;
  font-size: 9px;
}

.acknowledgement{
  padding-top: 20px;
  display: flex;
  flex: 1;
}

@media only screen and (max-width:376px){
  body{
    padding: 0;
    color: white;
    margin: 0;
  }

  .push-empty-div{
    width: 0;
  }

  .recipe{
    flex: 1;
    padding-top: 0;
    margin: 0;
  }

  .recipe-image{
    width: 100%;
  }

  .recipe-info{
    padding-left: 22px;
    padding-right: 22px;
  }

}

@media only screen and (min-width:376px){
  body{
    padding-bottom: 60px;
    padding-top: 60px;
  }

  .recipe{
    padding: 24px;
    flex: 2;
    min-width: 375px;
    border-radius: 13px;
  }

  .push-empty-div{
    flex: 1;
  }

  .recipe-image{
    width: 100%;
    border-radius: 7px;
  }
}