

body{
    background: white;
}

.nav-bar{
    display: flex;
    color: white;
    background: black;
    justify-content: space-around;
    height: 15vh;
    align-items: center;
}
.logo{
    font-size: 2.5cm;
    
}
.items {
    display:flex;
    gap: 1cm;
    font-size: 0.7cm;
}

.items a{
    text-decoration: none;
    color: white;
}
.items a:hover{
    text-decoration: underline;
}


.containers{
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}
#info{
    width: 25vw;
    border: solid 2px black;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    font-size: 1.1cm;
    width: calc(3 -20px);
    box-sizing: border-box;
    margin-top: 30px;
}

.year-button{
    font-size: 0.6cm;
    background: transparent;
    border-radius: 20px;

}
.year-button a{
    color: black;
    text-decoration: none;
}
.year-button a:hover{
    box-shadow: 0 12px 16px grey;
    transition: all 0.5s ease-in-out;
    text-decoration: underline;
}

.Yearrecipe{
    display: flex;
}
.ytitle{
    font-size: 2.5cm;
    color: black;
    justify-self: center;
    align-self: center;
}
.yp{
    font-size: 1cm;
    color: black;
    justify-self: center;
    align-self: center;
    margin: 100px;
    border: solid 2px black;
    padding: 20px;
}
.pre{
    color: grey;
    font-size: 15px;
}
.recipes{
    display: flex;
    justify-content: space-around;
    margin-left: 20%;
    margin-right: 20%;
    gap: 30px;
    flex-wrap: wrap;
}
#food{
    padding: 20px;
    border: solid 2px black;
    width: 420px;
    width: calc(5 - 20px);
}
.foodimage{
    height: 370px;
    width: 420px;
}
.foodtitle a{
    color: black;
    text-decoration: none;
}
.foodtitle a:hover{
    text-decoration: underline;
}

#recipe{
    margin-top: 50px;
    margin-left: 200px; 
    margin-right: 200px;
}
.rt{
    font-size: 2.5cm;
}
.desc{
    font-size: 1cm;
    justify-content: left;
}
.prep{
    border: solid 2px black;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    padding-left: 50px;
    font-size: 1cm;
}

.ingredient_list li{
    font-size: 0.8cm;
    margin-bottom: 40px;
}

.it{
    font-size: 2cm;
}

.directions h2{
    font-size: 1.5cm;
}
.directions p{
    font-size:0.8cm;
}