:root {
	--white: #fff;
	--very-light-gray: #f0f0f0;
	--black: #000;
	--green: #accc5f;
	--green-lighter: #c2e56a;
	--blue: #4699cf;
	--blue-lighter: #4ea9e5;
}

body {
	font-family: 'Droid Sans', Arial, sans-serif;
	font-size: 15px;
}

a {
	text-decoration: none;
	color: black;
}

a:hover {
	text-decoration: underline;
}

.button {
	padding: .5em 1.5em;
	border: none;
	border-radius: 3px;
	color: var(--very-light-gray);
	background-color: var(--blue);
	font-weight: 500;

	box-shadow: 0 1px 3px 1px rgba(128, 128, 128, 0.5);

	transition: all .2s;
}

.button:hover {
	color: var(--white);
	background-color: var(--blue-lighter);
}

a.button:hover {
	text-decoration: none;
}

.button-alt {
	color: var(--very-light-gray);
	background-color: var(--green);
}

.button-alt:hover {
	background-color: var(--green-lighter);
}



.content {
	width: 50%;
	height: auto;
	position: absolute;
	top: 108px;
	left: 47%;
	margin-left: -25%;
	padding: 3%;

	box-shadow: 0 3px 5px 3px rgba(128,128,128,0.5);
}

.logo_wrapper img {
	width: 100%; height: auto;
}

.text_wrapper .heading {
	margin: 1em 0 0.5em;
	text-align: center;
}

.text_wrapper .left,
.text_wrapper .right {
	line-height: 1.5;
}

.text_wrapper .left {
	float: left;
}

.text_wrapper .center {
	margin-top: -10px;
	text-align: center;
}

.text_wrapper .right {
	float: right;
	text-align: right;
}

.link {
	color: var(--blue);
}
.link:hover {
	color: var(--green);
}

.link-alt {
	color: var(--green);
}
.link-alt:hover {
	color: var(--blue);
}

@media screen and (max-width: 572px) {
	.text_wrapper {
		margin: 0 -30%;
	}
}

@media screen and (max-width: 900px) {
	body {
		font-size: 13px;
	}

	.text_wrapper .heading {
		margin: 1.8em 0 1em;
	}
}

@media screen and (max-width: 1323px) {
	.content {
		box-shadow: none;
	}

	.text_wrapper .left, .text_wrapper .right {
		float: none;
		text-align: center;
	}
}
