body {
    background-color: #f5fff5;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;

    
    
    


}

main {
    display: flex;
    align-items: center;
    gap: 2rem;
    width: 80%;
    margin: auto;
    flex-wrap: wrap;
    justify-content: center;

}
main section{
    flex: 1 1 16rem;
    max-width: 34rem;
    box-sizing: border-box;
}
main h1 {
    font-size: 2.4rem;
    margin: 2rem 0 1rem 0;
    text-align: center;
    font-weight: 700;
}

@media (min-width:60rem) {
    #nav-toggel {
        grid-area: "navigation";
        display: none;
    }
nav{
    align-self: center;
}
    nav ul {
        display: flex;
        background-color: darkgreen;
        list-style-type: none;
        margin: 0;
        padding: 0;
        overflow: hidden;
    }

    nav ul li {
        align-self: center;
    }

    nav ul li a {
        display: block;
        color: white;
        text-align: center;
        padding: 1.4rem 1.6rem;
        text-decoration: none;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        font-variant: initial;
    }

    nav ul li a:hover {
        background-color: green;
    }



}

@media (max-width: 60rem) {
    nav {
        background-color: darkgreen;
        padding: 1rem;
        position: relative;

    }
nav button{
    align-content: flex-start;
    text-align: left;
    width: 3rem;

}
    #nav-toggel {
        background: none;
        border: none;
        color: white;
        font-size: 2rem;
        cursor: pointer;

    }

    nav ul {
        display: none;
        flex-direction: column;
        background-color: darkgreen;
        margin-top: 1rem;
        padding: 0;
        list-style-type: none;
        overflow: hidden;


    }

    nav ul.show {
        display: flex;
    }

    nav ul li a {
        padding: 1rem;
        display: block;
        color: white;
        text-align: center;
        text-decoration: none;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        font-variant: initial;
    }
}

nav ul li a:hover {
    background-color: green;
}

li{
    margin-top: 0%;
}

article {
    background-color: white;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    font-family: 'Courier New', Courier, monospace;
    padding: 5rem;
    border-radius: 2rem;
    display: flex;
    flex-direction: column;
    flex: 1 1 16rem;
    grid-area: "main";


}

#gerecht-van-de-week {
    align-self: center;
    background-image: url('../attributes/pexels-anna-guerrero-788383-4079520.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    color: white;
    height: 100%;
    width: auto;
    padding: auto;
}

header h1 {
    color: darkgreen;
    font-size: 2rem;
    text-align: center;
}

h2 {
    color: #ff6600;
    font-size: 1.5rem;
    padding-top: 2rem;

}

main iframe {
    border: none;
    width: 100%;
    height: auto;
}



form {
    display: flex;
    flex-direction: column;
    font-family: 'Courier New', Courier, monospace;
}
section{
    padding: 2rem;
    border-radius: 2rem;
    max-width: 850px;
    width: 100%;
    margin-bottom: 2rem;
    box-shadow: 0 1rem 1rem rgba(0,0,0,0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease ;    
    background-color: white;
}

section:hover{
    transform: translateY(-3px);
    box-shadow: 0 6px 14px rgba(0,0,0,0.12);
} 
section p, section li{
color: darkgreen;
font-family: 'Courier New', Courier, monospace;
font-size: 1.1rem;
color: #1a3d1a;
}
section ol{
    margin-left: 1.5rem;
}
section h3{
font-family: 'Courier New', Courier, monospace;
font-size: 1.8rem;
font-style: oblique;
font-weight: 600;
padding-bottom: 1rem;
color: darkgreen;
margin-bottom: 1rem;
}

img{
    max-height: 6rem;
    margin-bottom: 1rem;
}

section h2{
font-family: 'Courier New', Courier, monospace;
font-size: 1.8rem;
font-style: oblique;
font-weight: 600;
padding-bottom: 1rem;
color: darkgreen;
margin-bottom: 1rem;}

section img{
    max-height: 10rem;
    margin-bottom: 1rem;
}

footer {
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-weight: lighter;
    font-size: small;
    text-align: center;
    margin-bottom: 0rem;
    bottom: 0rem;
    background-color: darkseagreen;
    flex-direction: column-reverse;
    color: #f5fff5;
    padding: 1rem;
    grid-area: "footer";

}