header {
    color: rgb(255, 255, 255);
    text-align: center;
    padding: 25px;
    width: fill;
    background-color: black;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background-image: linear-gradient(to right top, #444444, #343434, #242424, #161616, #000000);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    margin: 0px;
    font-family: Arial, Helvetica, sans-serif;
}

.middle {
    text-align: center;
    text-decoration: wavy;
    color: aliceblue;
}

.op {
    color: aliceblue;
    text-align: center;
}

.container-overflowvisible {
    margin: 0px;
}

.right-to-left {
    animation: 0.4s right-to-left forwards;
    font-weight: 600;
    letter-spacing: -.005em;
    font-family: Arial, Helvetica, sans-serif;
    color: aliceblue;
    text-align: center;
}

@keyframes right-to-left {
    from {
        transform: translateX(-100vw);
    }

    to {
        transform: translateX(0);
    }
}

.cool-image {
    width: 300px;
    height: 400px;
    border: solid 20px;
    border-radius: 20%;
    border-color: black;
    margin-left: 100px;
    margin-right: 40px;
}


.right {
    text-align: left;
}

.balkje {
    background-color: rgb(0, 0, 0);
    margin: 50px;
    background-position: 5px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 2px;
    text-align: center;
    border-radius: 2vw;
    margin-bottom: 30px;
}

.divje {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 200px;
}

.tekst {
    font-size: 180%;
    background-color: rgba(195, 195, 195, 0.778);
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    border: solid 25px;
    border-radius: 65px;
    border-color: rgb(75, 75, 75);
    margin: 4px;
    width: 500px;
}

.tekst>p {
    margin: 20px;
}

.textcolor3 {
    color: white;
}

.cool-button {
    color: white;
    text-align: center;
    font-size: 16px;
    opacity: 0.6;
    transition: 0.3s;
    transition: transform 0.5s ease;
    border-radius: 15%;
}

.cool-button:hover {
    opacity: 1;
    transform: scale(1.20);
}

.projecten {
    color: white;
    text-align: center;
    font-size: 16px;
    opacity: 0.6;
    transition: 0.3s;
    transition: transform 0.5s ease;
    border-radius: 15%;
}

.projecten:hover {
    opacity: 1;
    transform: scale(1.20);
}

a:link {
    text-decoration: none;
    color: rgb(248, 248, 248);
}

a:visited {
    text-decoration: none;
    color: rgb(255, 255, 255);
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

li {
    float: left;
}

a {
    font-size: 125%;
    margin-right: 35px;
}

.navbar {
    font-family: Arial, Helvetica, sans-serif;
    padding-right: 15px;
    padding-left: 15px;
    background-color: rgba(0, 0, 0, 0.793);
}

.navdiv {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.current {
    text-decoration: underline 1px;
    color: white;
}

.navbar-responsive {
    display: none;
}

@media (max-width: 800px) {

    .navbar {
        display: none;
        font-size: 10px;
        flex-direction: column;
    }
    .navbar-responsive {
        display: flex;
        flex-direction: column;
        align-items: center;
        font-size: 10px;
    } 
    .menu ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        font-size: 18px;
        padding-left: 35px;
        padding-top: 20px;
        gap: 20px;

    }
    .navbar-responsive {
        background-color: rgba(0, 0, 0, 0.793);
    }
    
    .menu-button{
        margin-top: 10px;
        width: 50px;
        height: 30px;
    }

    .divje {
        display: flex;
        align-items: center;
        flex-direction: column;
        column-gap: 5px;
        gap: 30px;
    }

    .cool-image {
        width: 200px;
        height: 230px;
        border: solid 20px;
        border-radius: 20%;
        border-color: black;
        margin-left: 100px;
        margin-right: 40px;
    }

    .balkje {
        margin: 50px;
        display: flex;
        text-align: center;
        border-radius: 2vw;
        margin-bottom: 30px;
    }

    .balkje p{
        display: flex;
        padding-left: 30px;
    }

    .tekst {
        font-size: 160%;
        background-color: rgba(195, 195, 195, 0.778);
        color: white;
        font-family: Arial, Helvetica, sans-serif;
        border: solid 15px;
        border-radius: 65px;
        border-color: rgb(75, 75, 75);
        margin: 4px;
        width: 350px;
    }
}