body{
    margin:0;
    font-family:Arial;
    background-color: #181823;
}


/*header sectie */
header{
    width: 100%;
    height: 10vh;
    display: flex;
    flex-direction: row;
    #name{
        height: 100%;
        background-color: black;
        width: 40%;
        color: white;
        font-weight: bold;
        font-size: x-large;
        display: flex;
        align-items: center;
        align-content: center;
        p{
            margin-left: 8%;
        }
    }

    #navigation{
        height: 100%;
        background-color: #181823;
        width: 60%;
        display: flex;
        align-items: center;
        align-content: center;
    }
    ul{
        font-size: large;
        color: white;
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;

        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;

        li{
            height: 100%;
            width: 10%;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0px 20px;
            text-align: center;
            color: darkgray;
        }
        li:hover{
            color: aqua;
        }
        .contact{
            background-color: #5221e6;
            color: white;
        }
        .contact:hover{
            background-color: #2E0D8F;
        }
    }
}




