#launch_page
{
	display: inline-block;
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: green;
}

#click_to_launch
{
	position: relative;
	top: 40%;
	width: 40%;
	height: 20%;
	margin: auto;
	padding: auto;
	background-color: white;
	color: dark grey;
	border: 2px white solid;
	text-align: center;
	transition: background-color ease-in-out 500ms, color ease-in-out 500ms;
}
#click_to_launch:hover
{
	cursor: pointer;
	background-color: transparent;
	color: white;
	border: 2px white solid;

}

#click_to_launch h1
{
	position: relative;
	-ms-transform: translateY(-50%);
  	transform: translateY(-50%);
  	top: 35%;
}



/* game below */
#game
{
	display: inline-block;
	margin: auto;
}
#game_here
{
	margin: auto;
}

#buttons_play
{
	display: none;
	position: absolute;
	top: 5%;
	left: 90%;
}





/* controls below */
#controls
{
	display: none;
}

