@charset "UTF-8";
/* CSS Document */

/* Algemeen */
body {
    width: 100%;
    height: 100vh;
    position: relative;
    background-size: cover;
    background-position: center center;
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', sans-serif;
}
/* Structuur */

.inhoud {
    display: flex;
    flex-direction: row;
}
.onderdeel {
    width: 25%;
    height: 100%;
    padding-top: 25px;
    text-align: center;
    float: left;
}
.overlay {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    height: 100%;
    width: 25%;
    opacity: 0;
    transition: .75s ease;
}
.onderdeel:hover .overlay {
    opacity: 0.95;
}
.home {
    left: 0%;
    background-color: #DEDEDE;
    padding-top: 150px;
}
.about {
    left: 25%;
    background-color: #DE7A22;
    padding-top: 150px;
}
.skills {
    left: 50%;
    background-color: #20948B;
    padding-top: 150px;
}
.contact {
    left: 75%;
    background-color: #99B998;
    padding-top: 150px;
}
.onderaan {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    position: fixed;
    bottom: 0px;
    width: 100%;
	background-color: #000000;
	opacity:0.6;

}
/* Typografie */

.onderdeel a {
    font-size: 16px;
    color: white;
    font-weight: 300;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 6px;
}
.ontwerp a {
    text-decoration: none;
    color: white;
}
h1 {
    color: white;
    font-size: 14px;
    line-height: 16px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
}
p, .tekst a {
    color: white;
    font-size: 15px;
    letter-spacing: 1px;
    font-weight: 100;
    font-style: normal;
    line-height: 15px;
	    text-transform: none;

}
.credits p, .ontwerp p {
    color: white;
    font-size: 11px;
    margin: 15px;
}
.auteur {
    font-style: italic;
}
.logo {
    height: 100px;
}
.menu-knop-openen, .menu-knop-sluiten {
    display: none;
}

@media (max-width:600px) {
.inhoud {
    display: flex;
    flex-direction: column;
}
.onderdeel {
    width: 100%;
    height: 100%;
    padding-top: 25px;
    padding-left: 20px;
    text-align: left;
    float: left;
}
.overlay {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    overflow-x: hidden;
    transition: .75s ease;
    text-align: center;
}
.tekst {
    text-align: left;
    padding-left: 25px;
}
.home {
    background-color: #DEDEDE;
    padding-top: 25px;
}
.about {
    background-color: #DE7A22;
    padding-top: 25px;
}
.skills {
    background-color: #20948B;
    padding-top: 25px;
}
.contact {
    background-color: #99B998;
    padding-top: 25px;
}
h1 {
    color: white;
    font-size: 14px;
    line-height: 16px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
}
p  {
    color: white;
    font-size: 15px;
    letter-spacing: 1px;
    font-weight: 100;
    font-style: normal;
    line-height: 15px;
}
.menu-knop-sluiten {
    position: absolute;
    display: inline-block;
    background-color: #000000;
    color: white;
    font-size: 32px;
    line-height: 32px;
    text-align: center;
    top: 20px;
    right: 25px;
    border: none;
    border-radius: 12%;
    height: 40px;
    width: 40px;
    padding-bottom: 7px;
}
}
