html,body {
	height: 100%;
	margin: 0;
	padding: 0;
}
body {
	background-color: #42266f;
	text-align: center;
	font-family: 'Open Sans', sans-serif;
	font-weight: 400;
	color: #FFF;
}
a {
	color: #484848;
	display: inline-block;
	font-size: 15px;
	text-decoration: none;
	transition: all .3s ease;
	font-weight: 700;
}
a:hover {
	color: #5B92B5;
}
.table, .tableCell {
	height: 100%;
	width: 100%;
}
.table {
	display: table;
}
.tableCell {
	display: table-cell;
	vertical-align: middle;
}
.logo {
	width: 273px;
	height: auto;
	max-width: 100%;
	display: block;
}
.box {
	display: inline-block;
	padding: 30px;
	box-sizing: border-box;
}
ul.social {
	margin: 0;
	padding: 0;
	list-style: none;
}
ul.social li {
	display: inline-block;
	margin: 0 12px 20px;
}
ul.social li a {
	display: inline-block;
}

.button {
	padding: 8px 20px;
	display: inline-block;
	vertical-align: top;
	margin: 0 15px 30px;
	border-radius: 30px;
	border: 3px solid #9d0101;
	color: #9d0101;
	text-transform: uppercase;
	transition: all .3s ease;
	width: 120px;
}
.button:hover {
	background-color: #9d0101;
	color: #fff;
}
body h1 {
	padding: 0 0 30px;
	margin: 0;
}

p {
	margin: 0;
	padding: 0 0 40px;
}

@media screen and (max-width: 650px){ 

	body {
		padding-top: 50px;
	}

	.table, .tableCell {
		display: block;
	}
	
}