/*
CSS Style for webtec homepage
*/
/* 
    Created on : 30.04.2017, 15:48:40
    Author     : Joel
*/
* {
	box-sizing: border-box;
	font-family: 'Open Sans', sans-serif;
	padding: 0;
	margin: 0;
}

html {
	background: floralwhite;
}

#menu {
	display: block;
	margin: 0 auto;
	width: 720px;
}

#menu:after {
	content: "";
	clear: both;
	display: table;
	height: 1px;
}

#menu .menuitem {
	background: blue;
	border-radius: 5px;
	clear: none;
	color: white;
	float: left;
	height: 40px;
	padding: 5px;
	text-align: center;
	width: 180px;
}

#menu .menuitem:hover {
	background: lightskyblue;
	color: blue;
	cursor: pointer;
}

#menu .menuitem span {
	vertical-align: middle;
}

#container {
	margin: 0 auto;
	width: 720px;
}

#banner {
	
}

#myCanvas {
	background: blue;
	color: white;
	height: 250px;
	width: 100%;
}

#styleSwitch {
	position: absolute;
	width: 150px;
	height: 25px;
	border-radius: 5px;
	top: 100px;
	left: 100px;
}

#styleSwitch:hover {
	cursor: pointer;
}

.lead {
	font-weight: bold;
}

#images:after {
	clear:both;
	content:"";
	display: table;
	float:none;
}

.imagecontainer {
	clear: none;
	float: left;
	margin-right: 2%;
	width: 32%;
}
.imagecontainer:nth-child(3n) {
	margin-right: 0;
}
.imagecontainer:nth-child(3n+1) {
	clear: left;
}

img {
	max-width: 100%;
}

p {
	margin-bottom: 15px;
}

input, textarea {
	border-color: grey;
	border-radius: 5px;
	border-style: solid;
	border-width: 2px;
	color: gray;
	margin-bottom: 5px;
	outline: none;
	padding: 5px;
	width: 100%;
}

input:focus, textarea:focus {
	border-radius: 5px;
	border-color: darkgray;
	outline: none;
}

@media (max-width: 720px) {
	#menu {
		width: 100%;
	}
	#menu .menuitem {
		clear: both;
		float: none;
		width: 100%;
	}
	#container {
		width: 100%;
	}
}