body {
	background: #14b3dd;
	margin: 0;
	padding: 0;
	text-align: center;
	font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
		"Lucida Sans Unicode", Geneva, Verdana, sans-serif;
	line-height: 1.3;
}

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

.main-wrapper {
	width: auto;
	text-align: center;
}

.runner {
	max-width: 300px;
	max-height: 600px;
	margin: 0 auto;
	margin-top: 8vh;
}

.runner-wrapper {
	margin: 0 auto;
}

.runner .circle,
.runner .runningman {
	max-width: 300px;
	max-height: 300px;
}
.runner .circle {
	position: absolute;
	-webkit-animation: spin 20s linear infinite;
	-moz-animation: spin 20s linear infinite;
	animation: spin 20s linear infinite;
}

.buttons {
	padding-top: 20px;
	text-align: center;
}

.buttons a {
	width: 89%;
	float: left;
	padding: 16px;
	border-radius: 8px;
	margin-bottom: 10px;
	background: #2b3544;
	color: #fff;
	border: 0;
	font-size: 18px;
	text-decoration: none;
}

.buttons a:hover {
	background: #606160;
	cursor: pointer;
}

.info {
	text-align: left;
	padding-left: 10px;
	padding-right: 10px;
}

@-moz-keyframes spin {
	100% {
		-moz-transform: rotate(360deg);
	}
}
@-webkit-keyframes spin {
	100% {
		-webkit-transform: rotate(360deg);
	}
}
@keyframes spin {
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}
