@font-face {
    font-family: navbar;
    src: url(/fonts/OpenSans-VariableFont_wdth\,wght.ttf);
}

.vijfhoek img {
    display: flex;
    height: 80px;
    
}

body {
    padding: 0;
    margin: 0;
    overflow-x: hidden;
    font-family: navbar;
    background-color: rgb(242, 242, 242);
}

.navbar {
    height: 100px;
    background-color: rgba(250, 139, 2, 0.6);
    margin: 0;
}

nav {
    display: flex;
    padding-top: 13px;
    font-size: 20px;
    font-family: navbar;
    align-items: center;
    justify-content: center;
}

ul {
    display: flex;
    gap: 50px;
    margin-left: 50px;
    list-style-type: none;
}

li a {
    text-decoration: none;
    list-style-type: none;
    color: black;
    font-weight: bold;
    font-style: italic;
}

@media only screen and (max-width:548px) {
    .navbar {
        height: 200px;
        background-color: rgba(250, 139, 2, 0.6);
        margin: 0;
    }
    .vijfhoek img {
        display: flex;
        height: 100px;
    }

    nav {
        display: flex;
        padding-top: 13px;
        font-size: 20px;
        gap: 30vw;
        font-family: navbar;
        justify-content: center;
    }

    ul {
        display: flex;
        gap: 30px;
        margin: 0;
        margin-top: 10px;
        padding: 0;
        list-style-type: none;
        flex-direction: column;
        align-items: center;
    }

    li a {
        text-decoration: none;
        list-style-type: none;
        color: black;
        font-weight: bold;
        font-style: italic;
    }
}