body {
	margin: 0px;
	font-family: "Arial Black";
	background-color: green;
}

/* site header */
.header {
	overflow: hidden;
	background-color: #333366;
	border-bottom: 3px solid white;
	font-size: 35px;
	font-weight: bold;
	text-align: center;
	padding-top: 10px;
	padding-bottom: 10px;
    color: #FF6666;
}

.header a {
	text-decoration: none;
	color: white;
}
/* site header end */

/* site background */
.background {
	background-image: url("bg.jpg");
	height: 325px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
/* site background end*/

/* site navbar */
.navbar {
	overflow: hidden;
	background-color: #333366;
	border-top: 3px solid white;
	text-align: center;
	padding-top: 15px;
	text-transform: uppercase;
	padding-bottom: 15px;
    color: #FF6666;
}

.navbar-buttons { 
	list-style: none;
	margin: 0;
	padding: 0;
	font-size: 0;
} 
	
.navbar-buttons li { 
	display: inline-block;
	font-size: 16px;
}

.navbar-buttons a {  
	text-decoration: none; 
	color: #fff;
	padding: 15px 10px;
}

.navbar-buttons a:hover,
.navbar-buttons a.active { 
	color: #FF422B; 
	background-color: white; 
}
/* site navbar end*/

/* site about */
.about {
	background-color: white;
	text-align: center;
	color: #FF422B;
	margin-top: 0px;
	padding: 50px 0px;
	border-bottom: 10px solid #FF422B;
}

.about h1 {
	margin: 0px;
	font-size: 36px;
	text-transform: uppercase;
}

.about p {
	margin-left: 50px;
	margin-right: 50px;
}
/* site about end */

/* site staff */
.staff {
	background-color: white;
	text-align: center;
	color: #FF422B;
	margin-top: 0px;
	padding-top: 50px;
	text-transform: uppercase;
}

.staff h1 {
	margin: 0px;
	font-size: 36px;
}

.staff h2 {
	margin: 0px;
}

.staff p {
	margin: 0px;
	font-size: 12px;
}

* {
  box-sizing: border-box;
}

.row {
	margin-left: 50px;
	margin-right: 50px;
}

.column {
	margin-top: 15px;
	float: left;
	width: 33.33%;
	padding: 10px;
	height: 300px;
}

.row:after {
	content: "";
	display: table;
	clear: both;
}
/* site staff end */

/* site footer */
footer {
	background-color: #FF422B;
	display: block;
	color: white;
	text-transform: uppercase;
	font-weight: bold;
	text-align: center;
	padding-top: 35px;
	padding-bottom: 35px;
}
/* site footer end */