@charset "UTF-8";

/* Style you'll see on every page */
* {
	font-family: helvetica, arial, sans-serif;
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	background-color: #ffe4e1;
}
header {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	background-color: #b22222;
	z-index: 1;
}

main {
	position: relative;
	top: 180px;
	width: 100%;
	z-index: 0;
}

#banner {
	text-shadow: 2px 2px 2px #444;
	-webkit-text-shadow: 2px 2px 2px #444;
	text-align: center;
	color: #fff;
}

#banner h1 {
	margin: 20px auto;
}

#banner h3 {
	margin: 20px auto;
}

#navbar ul {
	list-style-type: none;
	margin: auto;
	padding: 0;
	overflow: hidden;
	background-color: #444;
	position: relative;
	display: block;
	width: 100%;
}

#navbar ul li {
	float: left;
	border-right: 1px solid #bbb;
	width: 33.33333%;
}

#navbar ul li:last-child {
	border-right: none;
}

#navbar ul li a {
	display: block;
	color: #fff;
	text-align: center;
	padding: 14px 0;
	text-decoration: none;

    transition-property: all;
	transition-duration: .5s;
	-webkit-transition: all .5s;
	-moz-transition-property: all;
	-moz-transition-duration: .5s;
	-o-transition-property: all;
	-o-transition-duration: .5s;
}

/* Hovering over any link will cause the font to become bold */
#navbar ul li a:hover {
	font-weight: bold;
}

/* Hovering over a non-active link will cause it to turn black */
#navbar ul li a:hover:not(.active) {
	background-color: #333;
}

/* The active link will be red */
.active {
	background-color: #b22222;
}

/* Style for index.html */
#zoom_images {
	list-style-type: none;
	width: 25%;
	margin-left: 15px;
	float: left;
	position: relative;
	display: inline-block;
	text-align: right;
}

#zoom_images li {
	margin-bottom: 15px;
}

img {
	border: 1px solid #800000;
}

#info {
	width: 70%;
	display: inline-block;
	margin-left: 15%;
}

#info h3 {
	width: 100%;
	background-color: #eee;
	border: 1px solid #666;
	padding: 15px;
	text-align: center;
}

#info p {
  list-style-type: none;
	background-color: #eee;
	border: 1px solid #666;
	padding: 15px;
	text-align:center;
}

#features {
	display: inline-block;
	width: 70%;
	margin-left: 15%;
	margin-bottom: 30px;
}

#features h3 {
	width: 100%;
	background-color: #ffe4e1;
	border: 1px solid #b22222;
	padding: 15px;
	text-align: left;
}

#features h4, p {
	margin-bottom: 5px;
	text-align: left;
}

#features ul {
	list-style-type: none;
	background-color: #ffe4e1;
	border: 1px solid #b22222;
	padding: 15px;
	text-align: center;
}

.img-center {
	display: block;
	margin: 0 auto;
}
