* {box-sizing: border-box;}
body {
    background-image: linear-gradient(to bottom right, lightblue, lightgray);
}
#images_container {
    min-height: 40rem;
}
#container {
    display: flex;
    justify-content: center;
    height: 100vh;
}
.circle-big {
    display: flex;
    justify-content: center;
    align-items: center;
    transform: rotate(-90deg);
}
.circle {
    border-radius: 50%;
    width: 200px;
    height: 200px;
    background-color: black;
    position: absolute;
    background-repeat:no-repeat;
    background-position:center;
    stroke-dasharray: 620;
    stroke-dashoffset: 620;
    cursor: pointer;
}
svg {
    width: 200px;
    height: 200px;
    transform: rotate(0deg);
    box-sizing: border-box;
}
.svg:hover .circle {
    stroke-dashoffset: 0;
}
.text {
    display: flex;
    position: absolute;
    color: lightcyan;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    transform: rotate(90deg);
    font-size: 2em;
}
#menu-container {
    width: 100vw;
    height: 100vh;
    position: absolute;
    display: flex;
    justify-content: center;
    align-content: center;
}
#menu {
    display: flex;
    background-color: black;
    align-self: center;
    border-radius: 90px 0 0 90px;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    cursor: pointer;
    z-index: 1;
}
.line {
    display: none;
    transform: rotate(135deg);
    border: solid white;
    border-width: 0 3px 3px 0;
    padding: 20%;
    opacity: 0;
    z-index: 1;
}

#portoflio_container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100vh;
}
#content_box {
    display: flex;
    text-align: center;
    width: 80%;
    padding: 1%;
    background-color: white;
    box-shadow: 20px 40px 25px 0 rgba(0,0,0,0.75);
}
#name {
    font-size: 6em;
    font-family: 'Noticia Text', serif;
}
#textbox {
    text-align: center;
}
#about_me {
    font-size: 2em;
    font-family: 'Noticia Text', serif;
}
#about_me_text {
    font-size: 2em;
    width: 90%;
    font-family: 'Noticia Text', serif;
}
#button_text {
    display: inline-block;
    font-family: 'Noticia Text', serif;
    color: black;
    background-color: gainsboro;
    text-decoration: none;
    font-size: 2.5em;
    height: 20%;
    width: 30%;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    outline: 0;
    border: 0;
    cursor: pointer;
    z-index: 1;
}
#button_text .ripple {
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.7);
    position: absolute;
    transform: scale(0);
    animation: ripple 1s linear;
}
@keyframes ripple {
    to {
        transform: scale(2.5);
        opacity: 0;
    }
}
#content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 57vh;
}
#containerboxes {
    width: 100vw;
    height: 100vh;
    /*z-index: -1;*/
    position: absolute;
}
#projecten_box, #grafisch_box, #contact_box, #cv_box, #audio_box {
    display: none;
    position: absolute;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
    height: 100%;
    visibility: hidden;
    opacity: 0;
}
#projecten_box > div, #grafisch_box > div, #contact_box > div, #cv_box > div, #audio_box > div  {
    height: 50%;
    width: 30%;
}
.box_text {
    font-family: 'Noticia Text', serif;
    font-size: 5em;
    text-decoration: none;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100%;
    width: 100%;
    cursor: pointer;
}
#container_games, #container_websites {
    display: flex;
    width: 100vw;
    height: 100vh;
    align-items: center;
    justify-content: space-evenly;
    visibility: hidden;
    z-index: -1;
    position: absolute;
    opacity: 0;
}
#container_games > div {
    width: 40%;
    height: 50%;
    z-index: -1;
}
#container_websites > div {
    width: 30%;
    height: 50%;
    z-index: -1;
}
#games {
    background-color: lightseagreen;
}
#websites {
    background-color: lightcoral;
}
#nieuwste_projecten {
    background-color: lightslategray;
}