body {
	margin: 0;
	padding: 0;
	font-family: 'roboto', sans-serif;
}

a {
	color: #609dff;
	text-decoration: none;
}

.navigation {
	text-align: right;
	height: 90px;
	line-height: 70px;
	position: fixed;
	background-color: #fff;
	color: #000;
	width: 100%;
	display: flex;
	justify-content: center;
	z-index: 500;
	border-bottom: 1px solid #ccc;
}

.menu a {
	position: relative;
	text-decoration: none;
	color: #ccc;
	padding: 35px;
	line-height: 90px;
	transition-duration: 0.5s;
}

.logo {
	display: none;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.menu a:hover {
	color: #000;
}

.menu {
	margin: 0px 30px 0px 0px;
}

.made-by {
	display: inline-block;
	width: 100%;
	height: 50px;
	background-color: #000;
	position: relative;
	z-index: 5001;
}

.titlediv {
	display: none;
	visibility: hidden;
}

span {
	color: #000;
}

.uitleg {
	position: absolute;
	top: 100px;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
}

.uitleg-title {
	letter-spacing: 1.4px;
	font-weight: bold;
	text-align: center;
}

.uitleg-uitleg {
	letter-spacing: 1.3px;
	font-weight: normal;
	text-align: center;
}

@media only screen and (max-width: 1409px) {
	
	.navigation {
		display: inline-block;
		height: 70px;
	}
	
	.menu {
		text-align: center;
		width: 100%;
		z-index: 1000;
		display: block;
		transform: translateY(-110vh);
		transition: 0.5s ease-in-out;
		clip-path: circle(0px at top);
	}
	
	.menu a {
		line-height: 70px;
		display: block;
		border-bottom: 1px solid #cccccc;
		margin: 0;
		padding: 0;
		background-color: #fff;
		z-index: 100;
	}

	.menu.active {
		transform: translateY(0vh);
		clip-path: circle(150% at top);
	}
	
	.logo {
		display: block;
	}
	
    .box {
	    width: 40px;
	    height: 40px;
	    position: absolute;
	    top: 50%;
	    right: 0;
	    transform: translate(-50%, -50%);
	    cursor: pointer;
	    display: flex;
	    z-index: 1001;
    }

    .hamburger {
	    position: absolute;
	    top: 50%;
	    left: 50%;
	    transform: translate(-50%, -50%);
	    width: 25px;
	    height: 4px;
	    background: #000;
	    box-shadow: 0px 2px 5px rgba(0,0,0,0.2);
	    transition: 0.5s cubic-bezier(0.28, 0.1, 0.38, 1.5);
	    float: left;
    }

    .hamburger:before,
    .hamburger:after {
	    content: '';
	    visibility: visible;
	    position: absolute;
	    top: 50%;
	    left: 0%;
	    width: 25px;
	    height: 4px;
	    background: #000;
	    box-shadow: 0px 2px 5px rgba(0,0,0,0.2);
	    transition: 0.5s cubic-bezier(0.28, 0.1, 0.38, 1.5);
    }
	
    .hamburger:before {
	    top: -8px;
    }

    .hamburger:after {
	    top: 8px;
    }

    .box.active .hamburger {
	    background: #fff;
	    box-shadow: none;
    }

    .box.active .hamburger:before {
	    transform: rotate(45deg);
	    top: 0;
    }

    .box.active .hamburger:after {
	    transform: rotate(135deg);
	    top: 0;
    }
	
	.titlediv {
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%,-50%);
		display: block;
		visibility: visible;
		font-weight: bold;
		letter-spacing: 1.5px;
		color: #000;
	}

	.Title {
		z-index: 100000;
		visibility: visible;
		display: block;
		position: absolute;
		top: -20px;
		left: 50%;
		transform: translate(-50%,-50%);
	}
	.undertitle {
		z-index: 100000;
		visibility: visible;
		display: block;
		position: absolute;
		top: -5px;
		left: 50%;
		transform: translate(-50%,-50%);
	}

	.uitleg-title {
		display: none;
	}
}

.gallery {
	display: inline-block;
	float: left;
	position: relative;
	transition: all 0.2s ease-in-out;
	width: 40%;
	filter: grayscale(100%);
	margin: 5%;
	margin-bottom: 0px;
	margin-top: 0px;
}

.left {
	margin-left: 7%;
	margin-right: 3%;
}

.right {
	margin-left: 3%;
	margin-right: 7%;
}

.gallery img {
	display: inline-block;
	width: 100%;
	height: auto;
}

.gallery:hover {
	transform: scale(1.1);
	filter: grayscale(0%);
	cursor: pointer;
	z-index: 999;
	color: #000;
}

.desc {
	padding: 30px;
	text-align: center;
}

.image-body {
	position: relative;
	top: 230px;
	margin-left: auto;
	margin-right: auto;
	width: 90%;
	display: flex;
  	align-items: center;
  	justify-content: center;
}

.image {
	position: relative;
	margin: 0 auto;
}

@media only screen and (max-width: 535px) {
	.gallery {
		width: 100%;
	}
}

.kese {
	font-size: 12px;
}