html {
height: 100%;
}
body {
	/* by https://pixabay.com/de/rauhhorn-alpen-tannheimer-berge-2146181/ */
	background-image: url('background-fullhd.jpg');
				
			background-size: 100% 100%;
	font-family: 'Open Sans', sans-serif;
	overflow: hidden !important;
height:100%;
}
.box {
	
	/* align etc */
	/* http://tutorialzine.com/2010/03/centering-div-vertically-and-horizontally/ */
	width: 300px;
	height:150px;
	position:absolute;
	left:50%;
	top:45%;
	margin:-100px 0 0 -145px;
	
}
.box_content {
	padding: 0.5em;
	background-color: #FEF8FF;
	border-radius: 2px;
 box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
}
.coming_soon {
	font-size: 2em;
	font-family: 'Indie Flower', cursive;
}
#contact_modal {
	display: none;
	position: fixed;
	z-index: 1;
	padding-top: 100px;
	left: 0;
	top: 0;
	overflow: hidden;
	height: 100%;
	width: 100%;
	overflow: auto;
	background-color: rgb(0,0,0);
	background-color: rgba(0,0,0,0.4);
}
#contact_modal_content {
	background-color: #fefefe;
	width: 80%;
	margin: auto;
}
#contact_modal_c {
	padding: 1em;
	border: none;
}
#close_contact_modal {
	padding-right: 0.5em;
	float: right;
	font-size: 1.5em;
	color: #AAAAAA;
	cursor: pointer;
}
#close_contact_modal:hover {
	color: #111111;
}
input[type=text],input[type=email],textarea {
	width: 100%;
	padding: 0.3em;
	border-radius: 1px;
	border: none;
	background-color: #F2F1EF;
}
input[type=text]:focus,input[type=email]:focus,textarea:focus {
	background-color: #DADFE1;
}
textarea {
	min-width: 100%;
	max-width: 100%;
	max-height: 13em;
}
.btn {
	text-align: center;
	border: none;
	background-color: #2ecc71;
	padding: 0.3em 0.6em;
	cursor: pointer;
	font-size: 1em;
}
#contact_submit {
	float: right;
	margin-top: 0.3em;
}
#contact_submit:hover {
	content: '\00bb';
}
#msg {
	display: none;
}
#open_contact_modal {
	cursor: pointer;
}
#open_contact_modal:hover {
	text-decoration: underline;
}
#open_contact_modal:after {
	content: ' \2709';
}
#captcha_img {/*
	user-drag: none; 
	user-select: none;*/
	-moz-user-select: none;
	-webkit-user-drag: none;
	-webkit-user-select: none;
	/*-ms-user-select: none;*/
}
footer {
	color: #FFFFFF;
	position: absolute;
	bottom: 0.5em;
	left: 50%;
	transform: translateX(-50%);
}