body {
	color: #ffffff;
	font-family: "scandia-web";
	height: 100vh;
	position: absolute;
	height: 100vh;
	background-image: url(img/kamer.svg);
	background-size: 2000px;
	/*
	animation-name: move;
	animation-duration: 200s;
	animation-iteration-count: infinite;
	animation-timing-function: linear;
	*/
}

@keyframes move {
	0% 		{background-position: top left;}
	25% 	{background-position: bottom right;}
	50% 	{background-position: bottom left;}
	75% 	{background-position: top right;}
	100% 	{background-position: top left;}
}

p {
	font-family: "scandia-web";
	color: rgb(0, 0, 0);
}

h2, h3 {
	font-family: "scandia-line-web";
	color: black;
}

#cont_text {
	pointer-events: none;
	position: absolute;
	top: 6vh;
	z-index: 2;
	height: 70vh;
	width: 80vw;
	margin: 0 10vw;
	display: flex;
	justify-content: flex-start;
	flex-direction: column;
}

.text {
	max-width: 80vw;
}

.container {
	border: 2px hidden white;
	display: flex;
	width: 100vw;
	height: 95vh;
	border-radius: 50px;
	align-items: flex-end;
	justify-content: center;
	z-index: 1;
}

.box {
	height: 300px;
	width: 300px;
	border: 2px hidden;
	position: absolute;
	transition: 1s;
	max-width: 300px;
	max-height: 300px;
}

.box img {
	height: 100%;
	width: 100%;
}

#logo {
	position: absolute;
	font-size: 1.8em;
	margin-left: 25px;
	margin-top: 25px;
	font-family: BelweLight;
	color: orange;
	position: fixed;
	color: white;
	transition: 0.2s ease-out;
	z-index: 2;
	top: 0;
}

#logo:hover {
	transform: skew(10deg);
}

#terug {
	position: absolute;
	position: fixed;
	margin-top: 20px;
	margin-left: 20px;
	color: black;
	font-size: 1.8em;
	transition: 0.3s;
	padding: 0;
}

#terug:hover {
	transform: scale(1.3);
	filter: blur(1px);
}

#mterug {
	background-color: rgb(255, 255, 255);
	padding: 0.2em;
	color: black;
}