body {
	background-color: black;
	background-image: url('images/nervous_eyeball.gif');
	background-size: cover;
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-position: center center;
	color: red;

/*google font*/
	font-family: "IM Fell Great Primer", serif;
	font-weight: 400;
	font-style: normal;

/*remove scroll bar*/
	overflow-x: hidden;
}

.floating {
	background-image: url('images/floating_eyeball.gif');
}

.welcome {
	background-image:none;
}

/*div where the main text is*/
#main {
	position: absolute;
	top: 45%;
	width: 100%;
	text-align: center;
	font-size: 70px;
	letter-spacing: 7px;
}
/*div where the main text is on question page*/
#main.question {
	top: 30%;
}

/*links*/
a {
	color: red;
}

/* mouse over link */
a:hover {
	color: black;
}

/*questions*/
.question {
	text-decoration: none;
}

/*answer links*/
.answer {
	font-size: 50px;
	text-decoration: underline;
	margin: 20px;
}