body {
	position: relative;
	margin: 0;
	height: 100%;
	background-color: #fff;
	font-family: "darkmode-on", Arial, Helvetica, sans-serif;
	font-weight: 300;
}

.bg-holder {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background-image: url(sm-background.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	z-index: -1;
}

.content {
	position: relative;
	display: block;
	width: 100%;
	height: 100vh;
}

.flex-holder {
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 100%;
	height: 100%;
	min-height: 600px;
	padding: 40px 1.25em;
	text-align: center;
	box-sizing: border-box;
}

.logo-holder img {
	height: 180px;
	width: auto;
}

h1 {
	font-family: "korolev-condensed", Arial, Helvetica, sans-serif;
	font-weight: 700;
	color: #23f9f4;
	font-size: 3.5rem;
	line-height: 1.2;
	max-width: 900px;
	margin: 40px auto 20px auto;
	text-transform: uppercase;
	text-wrap: balance;
}

p,
a {
	font-family: "darkmode-on", Arial, Helvetica, sans-serif;
	font-weight: 300;
	color: #fff;
	font-size: 1.1rem;
	line-height: 1.7;
	max-width: 700px;
	margin: 20px auto 0;
	text-decoration: none;
	text-wrap: balance;
	transition: 0.25s ease;
}

p.soon {
	font-family: "korolev-condensed", Arial, Helvetica, sans-serif;
	font-weight: 700;
	color: #79f787;
	font-size: 2rem;
	line-height: 1.2;
	max-width: 900px;
	margin: 40px auto 20px auto;
	text-transform: uppercase;
	text-wrap: balance;
}

a span {
	position: relative;
	top: 10px;
	display: inline-block;
	width: 29px;
	height: 29px;
	margin-right: 12px;
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
}

a span.phone {
	background-image: url(phone.svg);
}

a span.email {
	background-image: url(message.svg);
}

a:hover {
	color: #23f9f4;
}

a:nth-of-type(2) {
	margin-left: 22px;
}


@media screen and (max-width: 768px) {
	.logo-holder img {
		width: 180px;
	}

	h1 {
		font-size: 30px;
		line-height: 35px;
		margin: 20px auto;
	}
}

@media screen and (max-width: 580px) {
	a:nth-of-type(2) {
		display: inline-block;
		width: 100%;
		margin: 0;
	}
}