:root{
  --primary-bg-color: hsla(22, 33%, 86%, 0.954);

  --primary-color:  hsl(30, 10%, 34%);

  --header-color:  hsl(14, 45%, 36%);

}

body {
   background-color: var(--primary-bg-color);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--primary-color);
   font-size: 14px;
   margin: 0;

}

@media screen and (min-width: 768px){
  body{
 font-size: 13px;
  }
}
.main-container{
 background-color: white;
    min-width: 320px;
    height: 100%;
    border-radius: 15px;
  display: flex;
  
  flex-direction: column;
  align-items: center;
}

@media screen and (min-width: 768px){
    .main-container{
 width: 450px;
 margin: 35px;
}
}

img{
    height: 150px;
   
}

@media screen and (min-width: 768px){
  img{
    width: 90%;
    height: 200px;
   border-radius: 25px; 
    margin-top: 25px;
  }
}
.recipe-container{
  display: flex;
  flex-direction: column;
  justify-content: center;  
  padding-left: 20px;
  margin-left: auto;
  margin-right: auto;
}
h1{
   font-weight: 700;
    line-height: 1em;
    
    }
p{
  margin: 0px;
  text-align:left;
 
}
h2{
  color: var(--header-color);
  margin-left: 22px;
  align-self: flex-start;
}
h3{
  color: hsl(332, 51%, 32%);
}

::marker{
  color: var(--header-color);
  font-weight: 800;
}


.preparation{
  background-color:hsl(330, 100%, 98%);
  border-radius: 10px;
  width: 80%;
  padding-top: 5px;
  padding-left: 15px;
  padding-bottom: 8px;
  padding-right: 10px;
  
  margin-top: 25px;
}
.preparation ul{
padding-left: 25px;
}


li{
  padding-left: 15px;
}

ul li{
  line-height: 30px;
 
}
ol li{
  line-height: 25px;
  padding-right: 30px;
}

.text-nutrition{
  padding-left: 22px;
}
.nutrition-container{
  margin-top: 20px;
  margin-bottom: 10px;
  line-height: 30px;
  width: calc(100% - 44px);
}
.value{
  color: var(--header-color);
  font-weight: 700;
}

th, td {
  border-bottom: 1px solid #ddd;
  padding-bottom: 5px;
}
tr:last-child td {
    border-bottom: none;
}