@import url('https://fonts.googleapis.com/css?family=Roboto|Archivo+Black');


body {
	font-family: 'Roboto', sans-serif;
	min-height: 100%;
	font-size: 18px;
	margin: 0;
	padding:  0;
} 

#background-image {
	content: '';
    background: url(../images/whiteholz.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
}
#main-area {
	display: flex;
	flex-grow: 1;
	flex-direction: column;
	height: 100vh;
}
#content {
	flex-grow: 1;
	z-index: 10;
	display: flex;
	width: 100%;
}
#content #article {
	display: flex;
	width: 100%;
}
#content .item {
	width: 100%;
	margin: auto 1rem;
}
#content .item #logo {
	width: 100%;
	margin: 0 auto;
    text-align: center;
}
#content .item #logo img {
	max-width: 1200px;
	margin: 0 auto;
	z-index: 10;
	width: 100%;
}


#footer {
	z-index: 10;
	background-color: rgba(196, 0, 0, 0.85);
   	font-family: 'Roboto', sans-serif;
    color: #fff;
    font-size: 18px;
    display: flex;
}
#footer i {
	width: 25px;
}
.item-wrapper { 
    display: flex;
    width: 100%;
    justify-content: center;
    padding: 30px 0;
}
.item-wrapper a {
	font-size: 18px;
	margin-right: 0px;
	color: #fff;
	text-decoration: none;
}
.item-wrapper a:hover {
	color: #40841F;
}
.item-wrapper span {
	white-space: nowrap;
	display: block;
}
.item-wrapper span i {
	font-size: 18px;
	margin-right: 10px;
}

@media screen and (max-width: 600px) {
	#content .item1 {
		width: 0;
		margin: 0;
	}
	
	#content .item2 {
		width: 100%;
	}
	#content .item2 .title, #content .item2 .subtitle {
	    margin: 10px 20px;
	}
	#content .item2 p.address {
	    margin: 10px 20px;
	}
	#content .item2 p {
	    margin: 4px 20px;
	}
	#footer .item-wrapper .items {
		text-align: center;
		/*justify-content: left;*/
		/*padding-left:15px;*/
	}
}

