/* ========== RESET ========== */

img,
img:before,
img:after {
	box-sizing: content-box;
}
img {
	height: auto;
}
img,
object,
embed,
iframe {
	max-width: 100%;
}
label {
	cursor: pointer;
}
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	cursor: pointer;
	*overflow: visible;
}
button,
input,
select,
textarea {
	padding: 0;
	vertical-align: baseline;
}
button:focus,
input:focus,
select:focus,
textarea:focus,
a:focus {
	outline: none;
}
::-moz-selection {
	background: #333;
	color: #fff;
	text-shadow: none;
}
::selection {
	background: #333;
	color: #fff;
	text-shadow: none;
}
hr {
	display: block;
	clear: both;
	height: 0;
	margin: 0 0 20px;
	padding: 0;
	font-size: 0;
	line-height: 0;
	border: 0;
	border-bottom: 1px solid #ccc;
}
a {
	color: #fff;
	text-decoration: none;
}
a:hover {
	color: #52a3fc;
	text-decoration: underline;
}
.clear {
	clear: both;
}
.left {
	float: left;
}
.right {
	float: right;
}

html {
	height: 100%;
}

body {
	background: #000;
	color: #fff;
	font: normal 14px/20px helvetica, arial, sans-serif;
	min-height: 100%;
	position: relative;
}

/* ========== HOME PAGE ========== */

.front {
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	display: grid;
	align-items: center;
}

.front section {
	padding: 0 15px;
}

.front .logo {
	margin: 0 0 25px;
}

.front .logo img {
	display: block;
	max-width: 150px;
	margin: auto;
}

.front .intro {
	max-width: 400px;
	margin: auto;
	text-align: center;
}

.next {
	position: absolute;
	left: 50%;
	bottom: 20%;
	width: 100px;
	margin: 0 0 0 -50px;
	text-align: center;
	color: #777;
}

.next:hover {
	color: #fff;
	text-decoration: none;
}

@media (min-width: 768px) {
	.front section {
		display: grid;
		grid-template-columns: 1fr 1fr;
		grid-gap: 50px;
		align-items: center;
		padding: 0;
	}

	.front .logo {
		margin: 0;
	}

	.front .logo img {
		margin: 0 0 0 auto;
	}

	.front .intro {
		max-width: 320px;
		margin: 0;
		text-align: left;
	}

	.next {
		bottom: 15%;
	}
}

@media (min-width: 992px) {
	.front .intro {
		max-width: 375px;
	}
}

/* ========== INFO PAGE ========== */

.info {
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	display: grid;
	align-items: center;
	text-align: center;
}

.info .logo {
	margin: 0 0 50px;
}

.info .logo img {
	display: block;
	margin: auto;
	width: 100px;
}

.info .contact p {
	margin: 0 0 1.5rem;
}

/* ========== END ========== */
