@font-face {
    font-family:"Young Serif";
    src: url("./assets/fonts/young-serif/YoungSerif-Regular.ttf");
}
@font-face {
    font-family: "Outfit";
    src: url("./assets/fonts/outfit/Outfit-VariableFont_wght.ttf");
}
html, body{
    height: max-content;
    
}
body{
  display: flex;
  justify-content: center;  
  align-items: center;      
  overflow: auto;    
  background-color: hsl(30, 54%, 90%);
  margin: 5rem 0;
  height: 100%;
  width: 100%;
  min-width: fit-content;
  min-height: fit-content;
  
}
body p{
    font-size: 1rem;
}
h1{
    font-family: "Young Serif";
    font-weight: 400;
    font-size: 2.5rem;
    color: hsl(24, 5%, 18%);
}
h2{
    font-family: "Young Serif";
    color: hsl(14, 45%, 36%);
    font-size: 2rem;
    font-weight: 400;
}
main{
    text-align: left;
    padding: 2rem;
    background-color: white;
    border-radius: 1rem;
    color: hsl(30, 10%, 34%);
    font-family: "Outfit";
}
.image img{
    margin: auto;
    max-width: 40rem;
    max-height: 18rem;
    border-radius: 1rem;

    
}
.preparation{
    border-radius: 1rem;
    background-color: hsl(330, 100%, 98%);
    
    padding: 1rem;
    font-family: "Outfit";
}
.preparation h3{
    font-size: 1.3rem;
    font-weight: 600;
    color: hsl(332, 51%, 32%);
}
ul > li::marker{
    color: hsl(14, 45%, 36%) ;
}
.preparation > ul{
    
    color:hsl(332, 51%, 32%);
}

li{
    padding-left: 1rem;
    color:hsl(30, 10%, 34%);
    font-weight: 400;
    margin: 0.625rem 0;
    line-height: 1.5rem;
}
.preparation li::marker{
    color:hsl(332, 51%, 32%);

}
.word{
    font-weight: 600;
}
ol{
    padding-left: 1rem;
}
ol > li::marker{
    color: hsl(14, 45%, 36%);
    font-weight: 600;
}
table{
    width: 100%;
    text-align: center;
    margin: auto;
    border-collapse: collapse;
}
td{
    padding: 1rem;
    text-align: left;
   border-bottom: 1px solid hsl(30, 18%, 87%);
}
.cell{
    color: hsl(14, 45%, 36%);
    font-weight: 600;
}
#last{
    border: 0;
}
@media(max-width: 375px) {
    .image img{
        width: 23rem;
        height: 10rem;
        border-radius: 0;
        
    }
   main{
    padding: 0;
    margin: 0;
    border-radius: 0;
   }
   
}