html {
  box-sizing: border-box;
  font-size: 26px;
  text-align: center;
  width: 100%;
  min-height: 100%;
  background: #fff;
  color: #402021;
}

body {
	width: 100%;
	min-height: 100%;
	position: relative;
	font-family: 'Bebas Neue', cursive;
}

body:before {
	content: '';
	display: block;
	background: url('bg.jpg') no-repeat center center;
	background-size: cover;
	opacity: .7;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
}

*, *:before, *:after {
  box-sizing: inherit;
}

body, h1, h2, h3, h4, h5, h6, p, ol, ul {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

ol, ul {
  list-style: none;
}

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

.content {
	width: 100vw;
	min-height: 100vh;
	padding: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	line-height: 1.25;
	position: relative;
	z-index: 5;
}

.logo {
	width: 400px;
	max-width: 80%;
	margin: 0 auto;
}

p {
	margin-bottom: 15px;
}

a {
	color: #1a3c34;
	text-decoration: none;
}

a:hover {
	color: #b76d21;
	text-decoration: none;
}

.social a {
	display: inline-block;
	margin: 0 10px;
}

.social a:hover {
	color: #b76d21;
}

.social i {
	margin-right: 5px;
}