@font-face {
	font-family: 'Cairo';
	font-style: normal;
	font-weight: 400;
	src: url('../font/cairo-v6-latin-regular.eot'); 
	src: local('Cairo'), local('Cairo-Regular'),
		url('../font/cairo-v6-latin-regular.eot?#iefix') format('embedded-opentype'), 
		url('../font/cairo-v6-latin-regular.woff2') format('woff2'),
		url('../font/cairo-v6-latin-regular.woff') format('woff'), 
		url('../font/cairo-v6-latin-regular.ttf') format('truetype'),
		url('../font/cairo-v6-latin-regular.svg#Cairo') format('svg'); 
}

@font-face {
	font-family: 'Material Icons';
	font-style: normal;
	font-weight: 400;
	src: url(../font/MaterialIcons-Regular.eot);
	src: local('Material Icons'),
	local('MaterialIcons-Regular'),
		url(../font/MaterialIcons-Regular.woff2) format('woff2'),
		url(../font/MaterialIcons-Regular.woff) format('woff'),
		url(../font/MaterialIcons-Regular.ttf) format('truetype');
}

.material-icons {
	font-family: 'Material Icons';
	font-weight: normal;
	font-style: normal;
	font-size:1em;
	display: inline-block;
	line-height: 1;
	text-transform: none;
	letter-spacing: normal;
	word-wrap: normal;
	white-space: nowrap;
	direction: ltr;
	vertical-align: middle;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	-moz-osx-font-smoothing: grayscale;
	font-feature-settings: 'liga';
}

a{
	color:white;
	text-decoration: none;
	cursor: pointer;
}

a:hover{
	text-decoration: underline;
}

body{
	color:white;
	font-family: 'Cairo', sans-serif;
	font-size: 1.4em;
	user-select: none;
}

img{
	user-drag: none; 
	user-select: none;
	-moz-user-select: none;
	-webkit-user-drag: none;
	-webkit-user-select: none;
	-ms-user-select: none;
}

#left > span{
	background:#2a2a2a;
	border-bottom-right-radius: 20px;
	border-top-right-radius: 2px;
	padding:10px;
}

#left{
	position: fixed;
	left: 0px;
	top:0px;
	bottom:0px;
	right:50%;
	display: flex;
	justify-content: center;
	align-items: center;
}

header h1{
	display: inline-block;
	background:#2a2a2a;
	border-bottom-left-radius: 20px;
	border-top-left-radius: 20px;
}

header{
	position: fixed;
	top:0px;
	left:0px;			
	right:0px;
	text-align: center;
}

header a{
	color:#2a2a2a;
}

header h1 span:first-child{
	color:white;
	padding-right: 	3px;
}

header h1 span:nth-child(2){
	background-color:white;
}

#left h2{
	margin: 0;
}

#right{
	position: fixed;
	left: 50%;
	top:0px;
	bottom:0px;
	right:0px;
	overflow-y: auto;
}

#box{
	margin:5em;
	margin-top: 9em;
	margin-bottom: 0px;
	box-sizing: content-box;
	color:#2a2a2a;
	position: absolute;
	background: rgba(255,255,255,0.9);
}

footer{
	color:white;
	position: fixed;
	bottom:1em;
	left: 1em;
	line-height: 1.5em;
	background:#2a2a2a;
	border-top-right-radius: 20px;
	padding:2px;
}

#bg{
	position: fixed;
	left: 0px;
	top:0px;
	right: 0px;
	bottom: 0px;
	z-index: -1;
}

#imprint{
	display: none;
}

#imprint a{
	color:dodgerblue;
}

#btn_close{
	position: fixed;
	right: 5em;
	top:6.5em;
	cursor: pointer;
	background-color: #333;
	color:white;
	border-radius: 100%;
	width:1em;
	height:1em;
	text-align: center;
	line-height: 0;
	padding:2px;
}

#items{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}

#items .item{
	margin:40px;
	text-align: center;
	width: 260px;
}

#items .item h3{
	font-size: 1.3em;
}

#items .item img{
	height:200px;
}

#items .item:hover img{
	animation:1s item_animation;
}

#items .item h3{
	margin-bottom: 0px;
}

#items .item div{
	line-height: 1em;
	width:260px;
}

@keyframes item_animation{
	0%{
		transform: rotate(0deg);
	}

	33%{
		transform: rotate(-8deg);
	}

	66%{
		transform: rotate(8deg);
	}

	100%{
		transform: rotate(0deg);
	}
}

@media only screen and (max-width: 1200px) {
	body{
		font-size: 1em;
	}
}

@media only screen and (max-width: 900px) {
	#box{
		margin-left:1em;
		margin-right:1em;
	}

	#items .item{
		margin:10px;
	}
}

body::-webkit-scrollbar {
	display: none;
}

@media only screen and (max-width: 800px) {
	#right, #left{
		position: static;
	}

	#box{
		border-top-left-radius: 20px;
		padding:10px;
	}

	header{
		position: absolute;
	}

	#left{
		padding-top: 10em;
		padding-bottom: 1em;
	}

	#right #box{
		margin-top: 0;
	}

	#right content{
		padding-bottom: 5em;
	}
}