* { margin:0; padding:0; } /* to remove the top and left whitespace */

html, body { 
	width:100%; 
	height:100%; 
	font-family: 'Play', sans-serif;
	background-color: black;
	background-image: url('../images/missionContent/whizBack.gif');
	background-repeat: no-repeat;
	background-size: cover;
} /* just to be sure these are full screen*/

canvas { 
	width: 50%;
	height: 50%; 
	display:block; 
	margin-right: auto;
	margin-left: auto; 
} /* To remove the scrollbars */

.container {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%; 
	display:block;
}

h1 {
	text-align: center;
	color: white;
}

#header {
	position: relative;
	margin: 50px auto 20px auto;
}

form {
	margin: 15px auto 0px auto;
	text-align: center;
}

input[type=text] {
	padding:5px; 
	border: 2px solid #fdf102; 
	-webkit-border-radius: 5px;
    border-radius: 5px;
    color: yellow;
    background-color: black;
    width: 250px;
    height: 30px;
    font-size: 18pt;
    margin-bottom: 10px;
}

input[type=text]:focus {
	border: 2px solid #fdf102; 
}

button {
	padding:5px 15px; 
	background: #fdf102; 
	border:0 none;
    cursor:pointer;
    -webkit-border-radius: 5px;
    border-radius: 5px; 
    height: 25px;
}

/* Smartphones (portrait and landscape) ----------- */
@media only screen and (max-device-width : 767px) and (min-device-width : 320px) {
	canvas { 
		width: 90%;
		height: 50%; 
		display:block; 
		margin-right: auto;
		margin-left: auto; 
	} /* To remove the scrollbars */

	#header {
		margin: 30px auto 10px auto;
	}

	button {
		width: 150px;
		height: 30px;
	}
}