/*
File: Main CSS Document
Autohaus Robbin GmbH
*/

* {
	box-sizing: border-box; 
}

body {
	background: #fff;
	color: #999;
	margin: 0;
	padding: 0;
	text-align: center;
	font-family: 'Helvetica', 'Arial', sans-serif;
    font-size: 9pt;
}

.wrapper {
	display: flex;
	height: 100vh;
	flex-direction: column;
	margin: 0;
}
/*Head*/
.logo {
  	text-align: center;
	margin: 20em auto 0 auto;
}
.logo img {
	width: 95%;
	max-width: 980px;
}
/*Content*/
.content {
	display: flex;
	flex: 1;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
}

.box {
	border: 1px solid #999;
	margin: 10px;
	width: 350px;
	height: 200px;
}

.box img {
	padding: 10px;
	width: 100%;
	height: auto;
}

/*Footer*/
.border {
	width: 905px;
	height: 20px;
	background: url('../gfx/border.png') no-repeat;
	clear: both;
	text-align: center;
	margin: 0 auto 0 auto;
}

footer {
    height: 200px;
}

.footer {
	display: flex;
	flex: 1;
	justify-content: center;
}

.contact {
	text-align: left;
	padding: 0 1em 1em 1em;
}

.left {
	border-right: 1px solid #999;
}

.middle {
	border-right: 1px solid #999;
}

.right a{
	color: #999;
}

@media screen and (max-width: 1280px) {
	.logo { margin-top: 10px; }
  	.box:first-child { flex-basis: 100%; }
	.border { display: none; }
}
