/* Базовый reset */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html, body {
	margin: 0;
	padding: 0;
	height: 100%;
	width: 100%;
	background: black;
	font-family: 'Lato', sans-serif;
	overflow: hidden;
}

#q {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 0; /* отправляем канвас назад */
}

.wrapper {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
}

.wrapper img {
	position: absolute;
	max-width: 800px;
	opacity: 0.2;
	display: block;
	margin: 0px auto;
	top: 60%;
	left: 50%;
	transform: translate(-50%, -60%);
}

.hero-text {
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    font-size: 100px;
    letter-spacing: 20px;
    color: rgba(255, 255, 255, 0.8);
    text-shadow: 0 0 30px rgba(0, 255, 0, 1);
    white-space: nowrap;
}
