/*
Name Q, Prommenschenckel
*/
            header
            {
                background-color: rgb(127, 156, 55);
                display: flex;
                align-items: center;
                justify-content: space-between;
                padding: 10px 15px;
              
            }

            nav ul
            {
                list-style: none;
                display: flex;/* zogt dat items naast elkaar staan*/
        
            }
            nav li
            {
                margin-left: 20px;
            }
            a:hover
            {
                color: black;
                text-decoration: underline;
            }
            section
            {
                justify-content: space-between;
                padding: 5px 10px;
                display: flex;
                
            }
            footer
            {
                 background-color: rgb(127, 156, 55);
                 
                display: flex;
                align-items: center;
                justify-content: space-between;
                padding: 10px 15px;
                position: relative;
            }
          