body {
    background-color: rgba(39, 29, 59, 255);
    background-image: url('https://i.imgur.com/5yuBqHR.png');
    overflow-x: hidden
}


#hamburger {
    opacity: 0;
}

.hamburger_btn {
    position: fixed;
    top: 26px;
    left: 26px;
    width: 26px;
    height: 26px;
    cursor: pointer;
    z-index: 10;
}

.hamburger_btn>span,
.hamburger_btn>span::before,
.hamburger_btn>span::after {
    display: block;
    position: absolute;
    width: 100%;
    height: 5px;
    background-color: rgba(56, 180, 151, 255);
    transition-duration: 1s;
}

.hamburger_btn>span::before {
    content: '';
    top: -12px;
    left: 0px;
}

.hamburger_btn>span::after {
    content: '';
    top: 12px;
    left: 0px;
}

.hamburger_menu {
    display: block;
    position: fixed;
    top: 0;
    left: -100%;
    width: 200px;
    height: 100%;
    margin: 0;
    padding: 80px 0;
    list-style: none;
    background-color: rgba(39, 29, 59, 255);
    box-shadow: 2px 2px 6px rgba(0, 0, 0, .4);
    transition-duration: 1s;
    text-align: center;
    z-index: 9;
}

.logo-container {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.menu_item {
    display: block;
    padding: 12px 24px;
    color: rgba(127, 101, 193, 255);
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    font-weight: 300;
    text-decoration: none;
    transition-duration: .25s;
    z-index: 9px;
}

.menu_item:hover {
    background-color: #312044;
}

#hamburger:checked+.hamburger_btn>span {
    transform: rotate(45deg);
}

#hamburger:checked+.hamburger_btn>span::before {
    top: 0;
    transform: rotate(0deg);
}

#hamburger:checked+.hamburger_btn>span::after {
    top: 0;
    transform: rotate(90deg);
}

#hamburger:checked~.hamburger_menu {
    left: 0 !important;
}

a {
    text-decoration: none;
    display: inline-block;
}

a img {
    border: none;
    vertical-align: middle;
}

h1 {
    color: rgba(92, 140, 172, 255);
}

h5 {
    color: white;
    font-size: 1rem;
    font-weight: 300;
    margin: 30%;
    background-color: #000;
    text-align: center;
}

h3 {
    color: white;
}

h4 {
    color: white;
}

p1 {
    color: white;
    font-size: 20px;
}

p7 {
    color: white;
}

.imagecontainer {
    border: black 1px solid;
    border-radius: 50%;
    overflow: hidden;
    position: fixed;
    top: 200px;
    right: 20px;
    width: 400px;
    height: 400px;
    max-width: 100%;
    z-index: 0;
}

.imagecontainer img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .imagecontainer {
        position: relative;
        margin: auto;
        top: 0;
        right: 0;
        max-width: 300px;
        height: auto;
    }
}

.grid {
    border: #ffffff 1px;
    width: 500px;
}

footer {
    height: 100px;
    margin-top: 150px;
}

.project-container {
    width: 100%;
    height: 100%;
}

.project {
    border: 1px solid black;
    width: 300px;
    height: 310px;
    float: left;
    margin: 32px;
}

.vraag label {
    width: 100%;
    background-color: #000;
    color: #fff;
    text-align: center;
}