body 
{
    background-color: beige;
    color: black;
    margin: 0;
    padding: 0;
}
header
{
    position: fixed;
    top: 0;
    width: 100%;
    height: 18vh;
    background-image: linear-gradient(rgb(182, 139, 139), hsl(0, 44%, 59%), hsl(0, 49%, 77%), hsl(0, 100%, 92%), beige);
    z-index: 999;
}

#navbar
{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
#navbar ul
{
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;

}
#navbar li
{
    top: 0;
    margin: 0 6%;
    height: 10vh;
    width: 100vw;
}
li:hover
{
    background-image: linear-gradient(hsl(0, 44%, 59%),hsl(0, 49%, 77%),hsl(0, 100%, 92%), beige);
}
#navbar a
{
    align-items: center;
    height: 100%;
}
#navbar a 
{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    padding: 0;
}

#navbar a, #gestel
{
    text-decoration: none;
    color: black;
    margin: 0;
    font-size: 120%;
    font-weight: bold;
}

main
{
    padding-top: 18vh;
}
footer
{
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 18vh;
    background-image: linear-gradient(beige,hsl(0, 100%, 92%),hsl(0, 49%, 77%),hsl(0, 44%, 59%),rgb(182, 139, 139));
    z-index: 999;
}