*:focus {
	outline: 0;
}

html {
	font-size: 20px;
}

html, body {
	height: 100%;
	overflow: hidden;
}

body {
	font-family: 'Lato', sans-serif;
	font-weight: 300;
	letter-spacing: 0.05em;
	color: #231f20;
	cursor: default;
}

h1 {
	font-size: 60px;
	text-transform: uppercase;
}

a, a:focus, a:hover, a:active, a:visited {
	text-decoration: none;
	color: inherit;
}

a:not(.icon):not(.button):hover, a:not(.icon):not(.button):active {
	border-bottom: 1px solid #231f20;
}

a.icon {
	font-size: 1.5rem;
	opacity: 0.5;
}

a.icon + a.icon {
	margin-left: 0.5rem;
}

a.icon {
	color: #231f20;
}

a.icon-tumblr {
	color: #35465c;
}

a.icon-facebook {
	color: #3b5998;
}

a.icon i {
	display: inline-block;
	-webkit-animation-duration: 0.5s;
	animation-duration: 0.5s;
	-webkit-animation-delay: 0.2s;
	animation-delay: 0.2s;
}

a.icon-tumblr i {
	-webkit-animation-delay: 0.4s;
	animation-delay: 0.4s;
}

a.icon-facebook i {
	-webkit-animation-delay: 0.6s;
	animation-delay: 0.6s;
}

a.icon:hover, a.icon:active {
	opacity: 1;
}

.center-helper {
	display: inline-block;
	width: 0;
	height: 100%;
	vertical-align: middle;
}

.center-content {
	display: inline-block;
	width: 100%;
	vertical-align: middle;
}

.center-content img {
	margin-bottom: 3rem;
}

div.buttons {
	margin-top: 1rem;
}

a.button {
	position: relative;
	display: inline-block;
	width: 2em;
	height: 2em;
	border-radius: 50%;
	line-height: 2.375;
	color: #fff;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
	-webkit-animation-duration: 0.5s;
	animation-duration: 0.5s;
}

a.button:nth-child(2) {
	-webkit-animation-delay: 0.15s;
	animation-delay: 0.15s;
}

a.button:nth-child(3) {
	-webkit-animation-delay: 0.3s;
	animation-delay: 0.3s;
}

a.button:nth-child(4) {
	-webkit-animation-delay: 0.45s;
	animation-delay: 0.45s;
}

a.button::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: inherit;
	box-shadow: inset 0 0 0 1em #231f20;
	-webkit-transform: scale3d(0.9, 0.9, 1);
	transform: scale3d(0.9, 0.9, 1);
	-webkit-transition: box-shadow 0.3s, -webkit-transform 0.3;
	transition: box-shadow 0.3s, transform 0.3s;
	z-index: -1;
}

a.button:hover, a.button:active {
	color: #231f20;
}

a.button:hover::before, a.button:active::before {
	box-shadow: inset 0 0 0 0.075em #231f20;
	-webkit-transform: scale3d(1, 1, 1);
	transform: scale3d(1, 1, 1);
}

.button + .button {
	margin-left: 0.5rem;
}

a.button .fa {
	vertical-align: top;
	line-height: 2;
}

@media screen and (max-width: 543px) {
	html {
		font-size: 16px;
	}

	.center-content img {
		margin-bottom: 1.5rem;
	}
}