/*
* By Cedric Esser
* Copyright © 2017 krähativ design, Werbeagentur Heidenheim. All rights reserved.
* Website http://www.kraehativ-design.de
* Adapted for bohnerie in 2017
*/

*
	::selection {
		background: #343434;
		color: #9a887e;
	}

	::-moz-selection {
		background: #343434;
		color: #9a887e;
	}


body {
	font-family: "Courier New", Courier, monospace;
	font-weight: bold;
	font-size: 18px;
	color: #343434;
	position: relative;
	width: 100vw;
	height: 100vh;
	line-height: 1.2;
	background-color: #9a887e;
}

.content-wrapper {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	right: 0;
	left: 0;
	background-image: url('../img/bohnerie-bg.jpg');
	background-repeat: no-repeat;
	background-position: 25% 50%;
	background-size: cover;
	overflow: hidden;
}

.content {
	background-color: rgba(154, 136, 126, .8);
	position: absolute;
	right: 0;
	top: 0;
	left: 0;
	bottom: 0;
	width: 100%;
	padding: 50px 15px 0;
	height: 100%;
	max-height: 100vh;
	overflow: auto;
}

.logo {
	position: relative;
	width: 100%;
	display: block;
	height: auto;
	margin-bottom: 50px;
}

p,
a {
	color: #343434;
}

a {
	display: inline-block;
}

a:hover,
a:focus,
a:active {
	color: inherit;
	text-decoration: underline;
}

@media only screen and (min-device-width : 375px) and (max-device-width : 667px) and (orientation : landscape) {
	.content {
		width: 45%;
		height: auto;
		bottom: auto;
		left: auto;
		top: 50%;
		transform: translateY(-50%);
		padding: 0 15px;
		background-color: transparent;
	}
}

@media screen and (min-width: 768px) {
	.content-wrapper {
		background-position: 50% 50%;
	}

	.content {
		width: 50%;
		height: auto;
		left: auto;
		bottom: auto;
		right: 15px;
		top: 50%;
		transform: translateY(-50%);
		padding: 0;
		background-color: transparent;
	}

	.logo {
		margin-bottom: 100px;
	}
}

@media screen and (min-width: 992px) {
	.content {
		width: 400px;
		right: 8%;
	}
}

@media screen and (min-width: 1200px) {
	.content {
		width: 580px;
		right: 5%;
	}	
}

@media screen and (min-width: 1400px) {
	.content {
		width: 580px;
		right: auto;
		left: 55%;
	}	
}
