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

html, body {
	background-color: black;
    font-size: 100%;
    box-sizing: border-box;
}

body{
	
	color: white;
	font-size: 18px;
	padding: 0;
	margin: 0;
	font-family: 'Special Elite', cursive;
}

a{
	color: white;
	text-decoration: none;
}

#content{
	background: black url(images/splash-bg.jpg);
	background-attachment: fixed;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	display: flex;
	height: 100vh;
	align-items: center;
	padding: 25px;
}
#content > div{
	text-align: center;
	width: 100%;
}

.brand{
	display: inline-block;
	max-width: 350px;
	visibility: hidden;
}

#contact{
	visibility: hidden;
}

h1{
	color: white;
	font-size: 2.222em;
	text-transform: uppercase;
}

.red{
	color: #d9003d;
	font-size: 1.111em;
}
.phone, .address{
	font-size: 1.667em;
}



@media all and (max-width: 1024px){
	.brand{
		max-width: 200px;
	}
}
@media all and (max-width: 767px){
	body{
		font-size: 14px;
	}
	#content{
		display: block;
	}
}