body {
	margin: 0;
	font-family: "brown-bold", sans-serif;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	flex-direction: column;
	color: #2f3132;
	background: #00B8FC;
}

a {
	text-decoration: none;
	-webkit-transition: all .35s ease-in-out;
	-moz-transition: all .35s ease-in-out;
	transition: all .35s ease-in-out;
	color: #ffffff;
}
	a:hover {
		text-decoration: underline;
	}

main,
section {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

main {
	height: 100%;
}

section span {
	text-align: center;
	font-size: 3em;
	font-weight: 700;
	display: block;
	border-bottom: 1px solid #ffffff;
	padding-bottom: 20px;
	color: #ffffff;
}
	section p {
		text-align: center;
		line-height: 1.4;
		padding: 0 32px;
	}

	section span + p {
		margin: 20px 0 0 0;
	}

@media (min-width: 1400px) {
	section {
		height: 40px;
		flex-direction: row;
	}
		section span,
		section p {	
			height: 100%;
			line-height: 40px;
		}

		section span {
			border-bottom: 0;
			border-right: 1px solid #ffffff;
			padding: 0 20px 0 0;
			width: auto;
		}

		section span + p {
			margin: 0;
			padding: 0 32px;
		}
}