@charset "utf-8";

/* roboto-regular - latin */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: local('Roboto'), local('Roboto-Regular'),
       url('roboto-v20-latin-regular.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
       url('roboto-v20-latin-regular.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

/* Smartphones (portrait and landscape) ----------- */
@media only screen 
and (min-device-width : 320px) 
and (max-device-width : 480px) {
	#content {
		height: 150px;
	}
}

/* Smartphones (landscape) ----------- */
@media only screen 
and (min-width : 321px) {
	#content {
		height: 150px;
	}
}

/* Smartphones (portrait) ----------- */
@media only screen 
and (max-width : 320px) {
	#content {
		height: 150px;
	}
}

/* iPads (portrait and landscape) ----------- */
@media only screen 
and (min-device-width : 768px) 
and (max-device-width : 1024px) {
	#content {
		height: 200px;
	}
}

/* iPads (landscape) ----------- */
@media only screen 
and (min-device-width : 768px) 
and (max-device-width : 1024px) 
and (orientation : landscape) {
	#content {
		height: 200px;
	}
}

/* iPads (portrait) ----------- */
@media only screen 
and (min-device-width : 768px) 
and (max-device-width : 1024px) 
and (orientation : portrait) {
	#content {
		height: 200px;
	}	
}

/* iPad 3 (portrait and landscape) ----------- */
@media only screen 
and (min-device-width : 768px) 
and (max-device-width : 1024px) 
and (-webkit-min-device-pixel-ratio : 2),
only screen 
and (min-device-width : 768px) 
and (max-device-width : 1024px) 
and (min-resolution: 192dpi) { 
	#content {
		height: 200px;
	}
}

/* Desktops and laptops ----------- */
@media only screen 
and (min-width : 1224px) {
	#content {
		height: 300px;
	}	
}

/* Large screens ----------- */
@media only screen 
and (min-width : 1824px) {
	#content {
		height: 400px;
	}	
}

/* Retina displays ----------- */
@media  only screen 
and (-webkit-min-device-pixel-ratio : 2), 
only screen 
and (min-resolution: 192dpi) {

}
html, body {
	height: 100%;
	padding: 0;
	margin: 0;
}

p, h1, h2, h3, h4, h5 {
	font-family: "Roboto";
	font-weight: 400;
}

.band {
	color: white;
	font-size: 1.5em;
	background-color: #b83f6f;
	padding-top: 5px;
	padding-bottom: 5px;
}

#container {
	height: 100%;
	position: relative;
}

#header {
    padding: 0;
	height: 40px;
	width: 100%;
	margin: 0;
    background-image: url("warn.png");
	
}
#content {
	margin-top: 100px;
	margin-bottom: 100px;
	text-align: center;
}

#content p#headline {
    font-weight: 600;
}
#content img {
	height: 100%;
	width: auto;
}

#footer {
	position: absolute;
	left: 0px;
	bottom: 0px;
	padding: 0;
	height: 40px;
	width: 100%;
	margin: 0;
    background-image: url("warn.png");
}
