@charset "utf-8";

html,
html * {
	padding: 0;
	margin: 0;
	box-sizing: content-box;
}

/*animations*/

@keyframes fade-in {
	0% {opacity: 0;}
	100% {opacity: 0.5;}
}

@keyframes float {
	0% {margin-top: 0;}
	50% {margin-top: 12px;}
	100% {margin-top: 0;}
}

@keyframes cloud1 {
	0% {margin-left: -400px; opacity: 0.0;}
	50% {opacity: 1.0;}
	100% {margin-left: 700px; opacity: 0.0;}
}

@keyframes cloud2 {
	0% {margin-left: -300px; opacity: 0.0;}
	50% {opacity: 1.0;}
	100% {margin-left: 700px; opacity: 0.0;}
}

@keyframes cloud3 {
	0% {margin-left: -100px; opacity: 0.0;}
	50% {opacity: 1.0;}
	100% {margin-left: 700px; opacity: 0.0;}
}

/*basic settings*/

html {
	width: 100%;
	height: 100%;
	background-image: url(images/cliffbg.png);
	background-position: center-top;
	background-repeat: repeat-x;
	background-color: #000000;
	image-rendering: -o-crisp-edges;
	image-rendering: -moz-crisp-edges;
	image-rendering: pixelated;
}

body {
	width: 100%;
	height: 100%;
}

ul a {
	text-decoration: none;
	color: #FFFFFF;
}

p {
	font-family: 'Space Mono';
	font-size: 20px;
	line-height: 24px;
	margin-bottom: 10px;
}

p:last-of-type {
	margin-bottom: 0px;
}

/*body properites*/

.sub-body {
	width: 100%;
}

#top-body {
	
}

#art-body {
	background-image: url(images/top-body-fringe.png);
	background-repeat: repeat-x;
	background-color: #00020f
}

#music-body {
	background-color: #000000;
}

#video-body {
	background-color: #000000;
}

#games-body {
	background-color: #000000;
}

#contact-body {
	background-color: #000000;
}

#footer-body {
	background-color: #000000;
}

/*top-body*/

#wrapper-top {
	position: relative;
	margin: auto;
	padding: 0;
	width: 900px;
	color: #FFFFFF;
	font-family: 'Play', sans-serif;
}

#header {
	
	position: relative;
	padding: 0;
	margin: 0;
	height: 154px;
	font-family: 'Press Start 2P', cursive;
	font-size: 24px;
	color: #FFFFFF;
	z-index: 1
}

#sub-header {
	image-rendering: -o-crisp-edges;
	image-rendering: -moz-crisp-edges;
	image-rendering: pixelated;
	position: relative;
	height: 500px;
	padding: 30px;
}

#construction {
	font-family: 'Press Start 2P', cursive;
	text-align: center;
	position: relative;
	bottom: -390px;
}

#construction h1 {
	margin-bottom: 10px;;
	font-size: 32px;
	line-height: 140%;
}

#construction p {
	margin: 0;
}

#nav-wrapper {
	position: absolute;
	top: 41px;
	left: -25px;
	z-index: 150;
}

#nav {
	/*background-color: #4E4E4E;*/
	position: fixed;
	width: 75px;
	height: auto;
	color: #FFFFFF;
	font-family: 'Press Start 2P', cursive;
	font-size: 12px;
	border-right: 3px solid #0e345f;
	
}

#nav ul {
	list-style-type: none;
	margin: 0;
	margin-top: 0px;
	margin-left: -38px;;
	padding: 0;
	text-align: right;
	
}

#nav li {
	position: relative;
	margin: 0;
	padding: 12px;
	transition: background-color 0.25s;
	mix-blend-mode: difference;
}

#nav li:hover {
	background-color: #0e345f;
}

#scroll-top-wrapper {
	position: absolute;
	left: 0;
	z-index: 100;
}

#scroll-top {
	display: none;
	animation: fade-in 0.4s;
	position: fixed;
	bottom: 0px;
	width: 180px;
	height: 20px;
	margin-left: -130px;
	background-color: #0e345f;
	font-size: 12px;
	font-family: 'Press Start 2P';
	text-align: center;
	padding-top: 10px;
	opacity: 0.5;
	transition: opacity 0.2s;
}

#scroll-top:hover {
	opacity: 1.0;
}

#city-image {
	height: auto;
	z-index: 0;
	animation: float 12s infinite;
	position: absolute;
	left: 50%;
	transform: translate(-50%,-37%);
}

#city-walkway {
	height:auto;
	position: absolute;
	left: 30%;
	transform: translate(-50%, 132%);
}

#player-sil {
	position: absolute;
	left: 573px;
	transform: translate(0, 242%);
}

#yoda-sil {
	position: absolute;
	left: 642px;
	transform: translate(0, 414%);
}

#cloud1 {
	position: absolute;
	top: 235px;
	animation: cloud1 50s infinite linear;
	z-index: -1;
}

#cloud2 {
	position: absolute;
	top: 121px;
	animation: cloud2 60s infinite linear;
	z-index: -1;
}

#cloud3 {
	position: absolute;
	top: 25px;
	animation: cloud3 80s infinite linear;
	z-index: -1;
}

#gallery {
	z-index: 300;
	display: none;
	background-color: #8C8C8C;
	position: fixed;
	width: 100%;
	height: 100%;
}

/*art-body*/

.fringe-music {
	position: absolute;
	width: 100%;
	height: 54px;
	background-image: url(images/art-body-fringe.png);
	background-repeat: repeat-x;
}

/*music-body*/

#music-body .music-widget {
	margin-right: 0px;
	margin-left: 0px;
	margin-bottom: 0px;
}

#music-body .right-most {
	margin-right: 0px;
	margin-left: 0px;
}

#music-body .bottom-most {
	margin-bottom: 0px;
}

#sunny-face {
	width: 123px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-65%, -55%);
}

#broken-description {
	width: 159px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-41%, -50%);
}

#spooky-video {
	display: block;
	margin: auto;
}

#spooky-description {
	margin: auto;
	margin-top: 20px;
	width: 700px;
}

/*video-body*/

#video-body iframe {
	
}

/*game-body*/

#game-video {
	display: block;
	margin: auto;
}

#game-description {
	margin: auto;
	margin-top: 20px;
	width: 700px;
}

#game-description p {
	margin-bottom: 15px;
}

#game-description:last-child {
	margin-bottom: 0px;
}

/*contact body*/

#contact-description {
	margin: auto;
	margin-top: -5px;
	margin-bottom: 15px;
}

/*footer-body*/

#footer-body .content {
	height: 50px;
}

#footer-body p {
	font-family: 'Press Start 2P';
	font-size: 12px;
	color: #FFFFFF;
}

/*content div properties*/

.wrapper-content {
	display: block;
	position: relative;
	margin: auto;
	margin-top: 0px;
	margin-bottom: 0px;
	padding: 0px;
	width: 800px;
	height: auto;
}

.content {
	display: block;
	position: relative;
	width: 100%;
	padding: 20px;
	padding-bottom: 0px;
	color: #FFFFFF;
}

.content h1 {
	font-family: 'Press Start 2P';
	font-size: 24px;
	margin-bottom: 25px;
	margin-top: 0px;
}

.content h2 {
	font-family: 'Press Start 2P';
	font-size: 24px;
	margin-bottom: 18px;
	margin-top: 10px;
}

.sub-content {
	position: relative;
	display: block;
	width: 100%;
	margin-bottom: 20px;
}

.sub-content:last-of-type {
	margin-bottom: 0px;
}

/*column properties*/

.column-wrapper {
	width: 100%;
}

.column-2 img {
	margin-bottom: 20px;
}

.column-2 img:last-child {
	margin-bottom: 0px;
}

.column-2 img.resize {
	width: 390px;
	height: auto;
}

.column-2 {
	display: block;
	float: left;
	width: 390px;
	padding: 0px;
	margin-bottom: 0px;
}

/*positioning properites*/

.centered {
	margin: 0;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.no-bottom-margin {
	margin-bottom: 0px;
}

.clear {
	clear: both;
}

.float-left {
	float: left;
}

.float-right {
	float: right;
}

/*animation classes*/

.anim-float {
	animation: float 2.5s infinite;
}

/*formatting properties*/

.jump-link {
	text-decoration: none;
	color: #FFFFFF;
}


#vic-1 {
	margin: 0px;
	width: 100px;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -20%);
}

#nightmare-description {
	position: relative;
	top: 23px;
	vertical-align: middle;
	display: inline-block;
	text-align: center;
}

#nightmare-box {
	position: absolute;
	left: 50%;
	top: 0px;
	transform: translate(-50%);
	width: 220px;
}

.fringe-buffer {
	height: 54px;
	width: 100%;
}

.block-centered {
	display: block;
	margin: auto;
	text-align: center;
}

.auto-aa {
	image-rendering: auto;
}

.pixel-font-inline {
	position: relative;
	top: 2px;
	font-family: 'Press Start 2P';
	font-size: 15px;
}

.text-border-white {
	text-shadow: 2px 0 0 #fff, -2px 0 0 #fff, 0 2px 0 #fff, 0 -2px 0 #fff, 1px 1px #fff, -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff;
}

#art-box {
	position: absolute;
	top: 0px;
	left: 50%;
	transform: translate(-50%, 0%);
}

#art-box-description {
	width: 306px;
	position: absolute;
	top: 28px;
	left: 50%;
	transform: translate(-50%, 0px);
	text-align: center;
}

#art-vic {
	position: absolute;
	top: 160px;
	left: 50%;
	transform: translate(-50%, 0);
}

#footer-heart {
	position: absolute;
	top: 40%;
	left: 50%;
	transform: translate(-50%, -50%);
}
