*, *:before, *:after { 
	-webkit-box-sizing: border-box; 
	-moz-box-sizing: border-box;
	box-sizing: border-box; 
}

body{
	margin: 50px;
	padding: 0;
	background-repeat: no-repeat;;
	font-family: 'Open Sans', "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif;
	color: white;
	text-rendering: optimizeLegibility;
	line-height: 1;
}

h1, h2, h3, h4, h5, h6{
	font-weight: 600;
	font-style: normal;	
}
h1 { font-size: 37px; }
h2 { font-size: 30px; }
h3 { font-size: 25px; }
h4 { font-size: 20px; }
h5 { font-size: 15px; }
h6 { font-size: 14px; font-weight: normal; }
hr { border: solid #fff; 
	border-width: 1px 0 0; 
	clear: both; 
	margin: 22px 0 21px; 
	height: 0; 
}
p{ 
	font-family: inherit; 
	font-weight: normal; 
	font-size: 13px; 
	line-height: 1.4; 
	margin-bottom: 17px; 
}
header, article, aside, section, footer{
	background-color: black;
	border: 3px solid gold;
}
header{
	margin-bottom: 20px;
	padding: 1px 30px 1px 30px;
}
section{
	padding: 30px;
}
section > h4 {
	margin: 0 0 20px 0;
	padding: 7px;
	background-color: #3498db;
	border-bottom: 3px solid #fff;
}
table{
	margin: 0 auto 15px auto;
	padding: 0;
	border-collapse: collapse;
	width: 20%;
}
table th, table td{
	margin: 0;
	padding: 10px;
	border: 3px solid #fff;
	text-align: center;
}

input, textarea{
	background-color: white;
	font-family: inherit;
	border: 1px solid #fff;
	box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
	color: rgba(0, 0, 0, 0.75);
	display: block;
	font-size: 14px;
	margin: 0 0 12px 0;
	padding: 6px;
	height: 32px;
	width: 100%;
	transition: all 0.15s linear;
}

textarea { height: auto; }
select { width: 100%; }

.controls{
	text-align: center;
}

.button{
	border: none;
	background-color: #0ac06d;
	padding: 10px;
	text-align: center;
	cursor: pointer;
	color: #fff;
	min-width: 150px;
	min-height: 50px;
	margin: 0 auto;
}
.button:hover{
	background-color: #fff;
	color: #0ac06d;
}
footer{
	text-align: center;
	margin-top: 20px;
	padding: 1px 30px 1px 30px;
}

.clear{
    float: none;
    clear: both;
}