@font-face{
	font-family:nunito;
	src: url(../fonts/Nunito-Light.ttf);
}

@font-face{
	font-family:nunito;
	src: url(../fonts/Nunito-Bold.ttf);
	font-weight:bold;
}

body{
	font-family:nunito;
	font-size:20px;
	background-color:black;
	background-image:url("img/stars-bg.png");
	background-attachment: fixed;
}



/* Top Bar */

#mainmenu{
	z-index:100;
	background-color:white;
	position:fixed;
	width:100%;
	top:0;
	left:0;
	height:56px;
	border-top-style:solid;
	border-top-width:5px;
	border-top-color:black;
}




/* Title Banner */

#topbanner{
	-webkit-box-shadow: inset 0px 0px 128px 64px rgba(0,0,0,0.64);
	-moz-box-shadow: inset 0px 0px 128px 64px rgba(0,0,0,0.64);
	box-shadow: inset 0px 0px 128px 64px rgba(0,0,0,0.64);
	display:flex;
	align-items:center;
	justify-content:center;
	border-style:solid;
	border-color:4b9634;
	border-width:4px;
	border-top:none;
}

.cover{
	z-index:99;
	height:520px;
	position: absolute;
	width:984px;
	top:56;
	left:0;
	right:0;
	margin:auto;
	border-bottom-left-radius:32px;
	border-bottom-right-radius:32px;
}

#farback{
	z-index:98;
	background-color:5F73A8;
	background-image: url("img/stars-far.png");
}

#bottomeffect{
	position:fixed;
	height:180px;
	background-image:url("img/bottom-bg.png");
	bottom:0;
	left:0;
	width:100%;
}

/* Animation */

#background{
	background-image: url("img/stars-close.png");
	-webkit-animation: backgroundScroll 40s linear infinite;
	animation: backgroundScroll 40s linear infinite;
}

@-webkit-keyframes backgroundScroll {
from {background-position: 0 0;}
to {background-position: -618px -180px;}
}

@keyframes backgroundScroll {
from {background-position: 0 0;}
to {background-position: -618px -180px;}
}



#midground{
	background-image:url("img/clouds.png");
	-webkit-animation: midgroundScroll 15s linear infinite;
	animation: midgroundScroll 15s linear infinite;
}

@-webkit-keyframes midgroundScroll {
from {background-position: 0 0;}
to {background-position: -768px -360px;}
}

@keyframes midgroundScroll {
from {background-position: 0 0;}
to {background-position: -768px -360px;}
}



#foreground{
	background-image: url("img/level-tiles.png");
	-webkit-animation: foregroundScroll 20s linear infinite;
	animation: foregroundScroll 20s linear infinite;
}

@-webkit-keyframes foregroundScroll {
from {background-position: 0 0;}
to {background-position: -512px 0;}
}

@keyframes foregroundScroll {
from {background-position: 0 0;}
to {background-position: -512px 0;}
}



/* Content */

#contentframe{
	position:absolute;
	margin:auto;
	width:834px;
	left:0;
	right:0;
	padding-top:600px;
	border-left-style:dotted;
	border-right-style:dotted;
	border-color:4b9634;
	border-width:4px;
	color:white;
}

#contentframe a{
	/*color:4b9634;*/
	color:lime;
	font-weight:bold;
	transition: color 0.2s ease-in;
	-moz-transition: color 0.2s ease-in;
	-webkit-transition: color 0.2s ease-in;
	-o-transition: color 0.2s ease-in;
}

#contentframe a:hover{
	color:yellow;
	transition: color 0.2s ease-out;
	-moz-transition: color 0.2s ease-out;
	-webkit-transition: color 0.2s ease-out;
	-o-transition: color 0.2s ease-out;
}

#leftspork{
	background-image:url("img/spork-l.png");
	left:-75;
}

#rightspork{
	background-image:url("img/spork-r.png");
	right:-75;
}

.sporks{
	position: absolute;
    height: auto;
	width:68px;
	bottom:0;
	top:40;
}

.content{
	position:relative;
	width:720px;
	background-color:rgba(56,56,87,0.75);
	background-image:url("img/screen-bg.png");
	margin:auto;
	margin-top:32px;
	margin-bottom:32px;
	padding-left:32px;
	padding-right:32px;
	padding-top:8px;
	padding-bottom:8px;
	border-radius:16px;
	border-style:solid;
	border-color:4b9634;
	border-width:2px;
}

#lillian{
	position:relative;
	top:10;
	right:16;
}

#download{
	text-align:center;
	padding:16px;
	position:relative;
	right:16px;
}

#thumbs a{
	opacity:1;
	transition: opacity 0.2s ease-in;
	-moz-transition: opacity 0.2s ease-in;
	-webkit-transition: opacity 0.2s ease-in;
	-o-transition: opacity 0.2s ease-in;
	
}

#thumbs a:hover{
	opacity:0.65;
	transition: opacity 0.2s ease-out;
	-moz-transition: opacity 0.2s ease-out;
	-webkit-transition: opacity 0.2s ease-out;
	-o-transition: opacity 0.2s ease-out;
}

/* Everything Else */

table{
	color:inherit;
	font-size:inherit;
}

li{
	padding-top:16px;
	padding-bottom:16px;
	list-style-type:circle;
}

.bullet{
	font-weight:bold;
	color:yellow;
}

#copyright{
	font-size:16px;
	margin-bottom:16px;
	text-align:center;
}

#squish{
	font-size:16px;
}

#smalldemo{
	/* padding-top:8px; */
	font-size:14px;
	padding-bottom:8px;
}