

body{
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    background-color: hsl(30, 54%, 90%);
    margin: 0 auto;
    padding: 0;
    border: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
   
}
main{
    
    background-color:hsl(0, 0%, 100%) ;
    width: 260px;
    padding: 30px;
    margin: 0;
}
img{
    margin: 0;
    padding: 0;
    border: 0;
    width: 320px;
    height: auto;
    max-width: 320px;
}
#inside{
    display: none;
}
#recipe-title{
    font-family: "Young Serif", serif;
    font-size: 30px;
    font-weight: 400;
    color: hsl(24, 5%, 18%);
}
p{
    font-size: 16px;
    color: hsl(30, 10%, 34%);
    padding-bottom: 15px;
}
#preparation-section{
    background-color: hsl(330, 100%, 98%);
    padding: 15px;
    border-radius: 15px;
}
#preparation-title{
    font-size: 20px;
    color: hsl(332, 51%, 32%);
}
#preparation-list{
    color: hsl(30, 10%, 34%);
}
.marker-purple::marker{
    color: hsl(332, 51%, 32%);
}

#ingredients-section{
    border-bottom: 1px solid hsl(30, 10%, 34%);
}
.brown-titles{
    font-family: "Young Serif", serif;
    font-size: 25px;
    font-weight: 400;
    color: hsl(14, 45%, 36%);
}
.marker-brown::marker{
    color: hsl(14, 45%, 36%);
}
.marker-brown{
    color: hsl(30, 10%, 34%);
    font-size: 16px;
    font-weight: 400;
}
#instructions-section{
    border-bottom: 1px solid hsl(30, 10%, 34%);
    font-weight: 400;
    font-size: 16px;
}
.nutrition-table {
  border-collapse: separate;
  border-spacing: 0 10px; /* 10px di spazio verticale tra righe */
  width: 100%;
}

.nutrition-table td {
  padding: 15px 20px;
  border-bottom: 1px solid hsl(30, 10%, 34%);
  background-color: white; /* opzionale, per visibilità */
}

.nutrition-table .last-row td {
  border-bottom: none;
}

.first-column {
  width: 30%;
}

.nutr-values {
  color: hsl(14, 45%, 36%);
  font-weight: 700;
}

@media only screen and (min-width : 520px){
    main{
        width: 320px;
        margin: 20px;
        border-radius: 15px;
    }
    #inside{
        display: initial;
        width: 100%;
        border-radius: 10px;
    }
    #outside{
        display: none;
    }
}
