html{
	width:100%;
	height:100%;
	margin:0;
	padding:0;
	font-family: monospace;
	font-size: 16px;
	color:aliceblue;
	background-color: #29242a;
}
body{
	padding:20px;
	position:absolute;
	left:0; right: 0;
	margin:auto;
	max-width: 960px;
	height: auto;
}
*{
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	/* border: 1px solid white; */
}
a, a:visited, a:hover{
	color:#7EC05C;
	display: inline-block;
}
p{
	width:100%;
	text-indent: 20px;
	text-align: justify;
}
p.policy a, p.policy a:visited, p.policy a:hover{
	color:#815697;
	font-size: 12px;
	float: right;
}
hr{
	border: 1px solid white;
	border-bottom:none;
	margin: 15px 0;
}
h1{
	font-size: 28px;
	text-align: center;
}

/* HEADER */
header{
	width: 100%;
	text-align: center;
}
header img{
	position:relative;
	width: 50%;
}

/* MAIN */
main{
	float:left;
	width:100%;
}
main section{
	position: relative;
	width:100%;
	float:left;
	padding-bottom: 40px;
}
section div:nth-child(1){
	float:left;
	width:38%;
	text-align: center;
}
section div:nth-child(2){
	float:right;
	width:60%;
}
section div:nth-child(1) img{
	float: left;
	width: 100%;
	margin-top:20px;
	border-radius: 15px;
}
section div:nth-child(1) a img{
	width: 100%;
	max-width: 150px;
	border-radius: 0px;
	margin-top:30px;
}

/* FOOTER */
footer{
	float:left;
	width:100%;
}
#copyright{
	text-align:center;
}
#copyright a{
	text-indent: 0;
}

@media only screen and (max-width: 600px) {
	
	section div:nth-child(1){
		float:left;
		width:100%;
		text-align: center;
	}
	section div:nth-child(2){
		float:left;
		width:100%;
	}
}