/* static portions of site */
/*#container {
	width: 600px;
	height: 500px;
}*/
.hidden {
	visibility: hidden;
}

a {
	text-decoration: none;
}

.introSpace {
	position: fixed;
	top: 0;
	height: 100vh;
	width: 100vw;
	background-size: cover;
	z-index: 999;
	background-image: url('../img/bluesky.jpg');
	animation-duration: 10s;
	animation-timing-function: linear;
	animation-iteration-count: 1;
	animation-name: introAnimation;
}
.introText h1 {
	margin: 0;
	font-family: 'Satisfy', cursive;
	font-size: 100px;
	text-align: center;
	 background: -webkit-linear-gradient(#FF1C10, #E8E514, #241BFF, #40E81F);
	  -webkit-background-clip: text;
	  -webkit-text-fill-color: transparent;
}

.introText #heading2 {
	color: #D815FF;
	font-size: 200px;
	margin: 0;
	padding: 0;
}
.introText {
	top:0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    padding: 0 2em 2em;
    text-align: left;
    width: 90vw;
    height: 90vh;
    animation-duration: 20s;
	animation-timing-function: ease-in;
	animation-iteration-count: 1;
	animation-name: generalDelay;
}

.introText div {
	width: 50vw;
	margin: 0 auto;
}
.introText button {
	width: 40%;
	height: 50px;
	margin-left: 25%;
	text-align: center;
	background-color: transparent;
	color: yellow;
	outline: none;
	border: 4px solid;
}

.introText button:hover {
	color: orange;
}
.introText .fineprint {
	font-size: .6em;
	font-weight: 200;
	opacity: 0.7;
}

.introText .fineprint:hover {
	opacity: 1;
}

.outro {
	display: none;	
}

.outro button {
	font-family: 'Satisfy', cursive;
	z-index: 9999;
	position: absolute;
	width: 200px;
	height: 100px;
	border: 4px solid;
	background: -webkit-linear-gradient(#FF1C10, #E8E514, #241BFF, #40E81F);
	  -webkit-background-clip: text;
	  -webkit-text-fill-color: transparent;
	color: #F9F9F7;
	font-size: 4em;
	font-weight: 700;
	top:0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.outro button {
	border: 4px solid #E8E514;
}


.gameOver {
	display: none;
	z-index: 9999;
	position: absolute;
	width: 70vw;
	height: 40vh;
	border-radius: 10px;
	padding: 1em 2em;
	background-color: rgba(192,192,192, 0.6);
	color: #F9F9F7;
	font-size: 2em;
	font-weight: 700;
	top:0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}
.gameOver h2 {
	margin: 0;
}
.gameOver p {
	color: hotpink;
	margin: 0;
}

.gameOver a {
	color: purple;
}

.gameOver .cursive {
	font-family: 'Satisfy', cursive;
}

#gameSpace {
	position: fixed;
	top: 0px;
	z-index: 500;
	width: 100%;
	height: 100%;
	/*background-color: orange;*/
	overflow-x: hidden;
	overflow-y: scroll;
}

#legend {
	position: absolute;
	height: 300px;
	width: auto;
	z-index: 999;
}


.gate {
	position: fixed;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	object-fit: fill;
	visibility: hidden;
}

/*floating legends */
.heaven{
	position: fixed;
	width: 30%;
	height: 60%;
	top: 100px;
	left: 120px;
	z-index: 9999;
	
	
}
.heaven img:first-of-type {
	position: fixed;
	width: 30%;
	height: 60%;
	top: 130px;
	left: 400px;
	z-index: 9999;
}
.heaven img:last-of-type {
	position: fixed;
	width: 30%;
	height: 50%;
	top: 130px;
	left: 250px;
	z-index: 9999;
}

.heaven img{
	object-fit: contain;
	height: 80%;
	width: auto;
	animation-name: hovering;
	-webkit-animation-name: hovering;
}

.arrow {
	z-index: 800px;
	display: none;
	position: absolute;
	
}
#keyboardless {
	display: none;
}

@media (max-width: 1024px) {

	/* prevent phone and tablet attempts */
	#keyboardless {
		display: block;
	}
	body {
		background-image: url('../img/bluesky.jpg');
	}

	#container {
		display: none;
	}

	h1 {
		margin: 0;
		font-family: 'Satisfy', cursive;
		font-size: 6em;
		text-align: center;
	 	background: -webkit-linear-gradient(#FF1C10, #E8E514, #241BFF, #40E81F);
	 	 -webkit-background-clip: text;
	 	 -webkit-text-fill-color: transparent;
	}

	img {
		padding-top: 1em;
		max-height: 50vh;
		max-width: 50vw;
		float: right;
		animation-name: hovering;
		-webkit-animation-name: hovering;
	}

	.mobileMessage {
		margin: 0 1em;
		max-width: 50vw;
		float: left;
		padding: 1em;
		color: white;
		text-align: right;

	}
}

@media (max-width: 520px) {
	h1 {
		font-size: 4em;
	}
	img {
		max-width: 30vw;
	}
	.mobileMessage {
		width: 60vw;
	}
}



