.background {
    background-image: url("../img/bg.jpg");
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    opacity: 1.0;
	color: rgb(26, 30, 44);
}

.background-overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgb(0, 0, 0, 0.7);
}

html, body {
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
	font-family: 'Open Sans', sans-serif;
}

canvas {
	z-index: 1337;
	display: block;
	position: absolute;
    top: 0;
    left: 0;
}

.contactContainer, .content
{
	position: absolute;
	z-index: 2000;
	color: white; 
	text-transform: uppercase;
	text-align: center;
	transform: translate(-50%, -50%);
}

h1::selection, h2::selection, h3::selection, span::selection {
	background: purple;
}

.content {
	left: 50%;
	top: 40%;
}

.contactContainer
{
	left: 50%;
	top: 80%;
}

h1 {
    font-size: 68px;
    font-weight: 700;
    line-height: 78px;
}

.delay-1s {
	animation-delay: 1s;
}

.delay-05s {
	animation-delay: 0.5s;
}