/* CSS Document */

html,
body
{
	margin: 0;
	padding: 0;
	height: 100%;
}

body
{
	font-size: 18px;
	font-family: "Helvetica Neue", Helvetica, sans-serif;
	line-height: 2em;
	color: #444;
}

header
{
	padding: 1em 0;
	padding-bottom: 4em;
}

h1
{
	font-size: 1.5em;
}

.container
{
	margin: 0 auto;
}

.main
{
	margin-bottom: 6em;
}

@media screen and (max-width: 768px)
{
	.container
	{
		width: 90%;
	}
}

@media screen and (min-width: 768px)
{
	.container
	{
		width: 740px;
	}
}

@media screen and (min-width: 992px)
{
	.container
	{
		width: 960px;
	}
}

p
{
	margin: 1.5em 0;
}

.button
{
	display: block;
	width: 550px;
	background: #933;
	color: white;
	text-align: center;
	padding-left: 50px;
	line-height: 48px;
	height: 50px;
	text-decoration: none;
	border-radius: 4px;
	box-shadow: 2px 3px 6px rgba(0,0,0,0.4);
	transition: all 0.25s ease-in-out;
	border: 2px solid #933;
	box-sizing: border-box;
}

.button:hover
{
	background: #FFF;
	color: #933;
}

.button span
{
	float: left;
	margin-left: -50px;
	width: 50px;
	height: 48px;
	line-height: 48px;
	text-align: center;
	background: #933;
	color: white;
	font-size: 24px;
}