body{
	font-family: 'Roboto', sans-serif;
	font-family: 'Raleway', sans-serif;
	position: relative;
	height: 100vh;
	background-color: #232323;
	overflow: hidden;
}

#mainContainer{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	color: white;
}

#mainContainer h1{
	margin: 0px;
	padding: 0px;
	margin-bottom: 50px;
	font-weight: 100;
	font-size: 3em;
}

#mainContainer h3{
	margin: 0px;
	padding: 0px;
	font-weight: 500;
	font-size: 1.5em;
	text-transform: uppercase;
	white-space: nowrap;
}

#mainContainer h3 a{
	text-decoration: none;
    padding: 12px 35px;
    background-color: #00BCD4;
    color: white;
	transition: all 100ms ease-in-out;
}

#mainContainer h3 a:hover{
	background-color: #0094a7;
}

#mainContainer h3 a i{
	margin-left: 5px;
	transition: all 100ms ease-in-out;
}

#mainContainer h3 a:hover i{
	background-color: #0094a7;
	margin-left: 15px;
	margin-right: -10px;
}