@charset "utf-8";

body {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0;
	padding: 0;
	background-image: url('../images/archtek-bg.jpg');
	min-height: 100vh;
	width: 100%;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	font-family: 'Lato', sans-serif;
}

body:after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: #FFFFFF;
	opacity: 0.75;
}

.logo-container {
	position: relative;
	z-index: 1;
	width: 50%;
	min-width: 310px;
	max-width: 900px;
}

.logo-container img {
	width: 100%;
}

.top-container {
	position: absolute;
	z-index: 1;
	top: 20%;
	text-align: center;
	text-transform: uppercase;
	color: black;
	font-weight: bold;
	font-size: 1.4rem;
	letter-spacing: 6px;
}

.bottom-container {
	position: absolute;
	z-index: 1;
	bottom: 20%;
	text-align: center;
	text-transform: uppercase;
	color: black;
	font-weight: bold;
	font-size: 1rem;
	letter-spacing: 4px;
}

.bottom-container a {
	color: black;
	text-decoration: none;
}

.bottom-container a:hover {
	text-decoration: underline;
}