.recipe-list{
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.recipe-card{
    flex: 1 1 250px;
}
@media (max-width: 600px){
    .recipe-card{
        flex: 1 1 100%;
    }
}

section{
    margin-bottom: 30px;
}

.recipe-detail {
    max-width: 700px;
    margin: 0 auto;
}

.recipe-detail img{
    width:100%;
    max-width: 500px;
    border-radius: 6px;
    margin: 15px 0;
}

img{
    max-width: 100%;
    height: auto;
}

.tag{
    display: inline-block;
    padding: 4px 8px;
    margin: 3px;
    border-radius: 4px;
    font-size: 0.9em;
}

.nav, .nav-row {
    display: flex;
    gap: 15px;
}
body {
    margin: 0;
}

@media (max-width: 600px) {
    .nav, .nav-row {
        flex-direction: column;
        align-items: center;
    }
}
.recipe-info{
    background: #f5f5f5;
    padding: 12px;
    margin: 15px 0;
    border-radius: 6px;
}

.recipe-columns{
    display: flex;
    gap: 30px;
    margin-top: 20px;
}

@media (max-width: 600px){
    .recipe-columns{
        flex-direction: column;
    }
}

.recipe-columns{
    flex: 1;
}

ul, ol{
    padding-left: 20px;
}