/* Default (Mobile) */
body, div, h1, h2, p, ul, li, img {
	margin: 0; padding: 0; border: 0;
}

html, html a {
	-webkit-font-smoothing: antialiased;
	text-shadow: 1px 1px 1px rgba(0,0,0,0.004);
}

html, body {
  height: 100%;
}

body {
	background: #fff;
	font-family: 'Abel', sans-serif;
	color: #333;
	font-size: normal;
}

.container {
	width: 90%;
	min-height: 60%;
	margin: 0 auto;
	padding: 20% 0 0 0;
	text-align: center;
}

.container:after {
  content: "";
  display: block;
}

footer, .container:after {
  height: 3em; 
}

footer {
  text-align: center;
  font-size: 0.8em;
  color: #999;
}

h1 {
	color: #666;
	font-size: 3.4em;
	margin: 0;
}

h1 span {color: #f00;}
h1 span span {color: #999;}

p {
	font-size: 1em;
	line-height: 1.6;
}

p a {
	color: #666;
	font-style: italic;
	text-decoration: none;
	padding-bottom: .15em;
}

a.contact {
	color: #fff;
	text-decoration: none;
	font-size: 1.2em;
	border-radius: 5px;
	display: inline-block;
	width: 200px;
	height: 50px;
	line-height: 50px;
	background: #f00;
	margin: 2.6em 0 0 0;
}

/* Tablet */

@media screen and (min-width: 321px) {

h1 {
	font-size: 4em;
	margin: 0;
}

p {
	font-size: 1.6em;
	line-height: 1.6;
}

a.contact {
	background: transparent;
	border-radius: 0;
	width: auto;
	height: auto;
	display: inline;
	color: #999;
	text-decoration: none;
	font-size: 1.2em;
	padding-bottom: 8px;
}

a.contact:hover {
	color: #f00;
	background: transparent;
}

footer {
  text-align: center;
  font-size: 0.6em;
}

}

/* Desktop */

@media screen and (min-width: 769px) {

h1 {
	font-size: 5em;
	margin: 0;
}

p {
	font-size: 1.6em;
}

a.contact {
	font-size: 1.6em;
}

a.contact:hover {
	color: #f00;
	background: transparent;
}

a.contact, h1 {
	-webkit-transition: all .25s ease;
	-moz-transition: all .25s ease;
	-o-transition: all .25s ease;
	-ms-transition: all .25s ease;
	transition: all .25s ease;
}

}