﻿@charset "utf-8";
/* Standard */
:root {  font-size:16px;} 
* {
	box-sizing:border-box;
}

html {
	min-height: 100%;
	}
	
body {
	color:#000;
	font-family: 'Work Sans', sans-serif;
	font-size:1em;
	line-height:1.431em;
}

#wrapper {
	position:relative;
	max-width:800px;
	margin: 1rem auto;
	border:none;
	padding:0.5rem 0rem;	
	background-color:#fff;
	overflow:hidden;	
	-moz-box-shadow: 0px 0px 13px #A6A6A6;
	-webkit-box-shadow: 0px 0px 13px #A6A6A6;
	box-shadow: 0px 0px 13px #A6A6A6;
}

header,article {
padding: 1rem 2rem;	
}

footer {
padding: 1rem 2rem;
background-color:#EDEDED;
margin-bottom:-0.5rem;
}

p {
	text-align:left;
}

h2+p,h2+ul {
	margin-top:0.308rem;
}

h1 {
	text-align: center;
	font-size: 2.392em;
	line-height: 1.1em;
	font-weight: 800;
	margin-bottom:3rem;
}

h1 span {
	border-bottom: solid 8px #FAFF00;
}

h2 {
	font-size:1.231em;
	line-height:1.231em;
}

h3 {
	font-size: 1.231em;
	line-height: 1.431em;
	margin-bottom: 2rem;
	font-weight: 700;
}

a:link,a:active,a:visited {
	color:#000;
	text-decoration:none;
}

a:hover {
	color: #999999;
	text-decoration: underline;
}

img {
	max-width:100%;
	height:auto;
	display:block;
}

ul {
	padding-left:2rem;
}

li {
	padding-bottom: 0.2rem;
	padding-left: 0.3rem;
}

ul span {
	text-decoration: underline;
}

section {
	display: inline-block;
	width: 100%;
	padding: 0.5rem 1.5rem;
	background-color: #EDEDED;
	margin-bottom: 1.5rem;
}
section:hover {
	background-color: #fff;
	border: 1px solid #666;
	box-shadow: 3px 3px 4px #A6A6A6;
}

footer img {
	height: auto;
	display: block;
	position: absolute;
	z-index: 555;
	right: 5%;
	bottom: 2.3%;
}

@media only screen and (max-width:640px) {
	#wrapper {
		border:none;
		margin:0 auto;
	}
	header,article,footer {
		padding: 1rem;		
	}
	
	footer img {
	position: relative;
	margin:0 auto;
	right: 0%;
	bottom: 0%;
}

h1 {
	font-size: 1.792em;
	line-height:1.631em;
}
	
	h3 {
	font-size: 1.11em;
}
}

