@import url('https://fonts.googleapis.com/css?family=Raleway:500,700');
@import url('https://fonts.googleapis.com/css?family=Audiowide');

body {
	background-image: url(../images/bg.jpg);
	background-size: cover;
	background-position: 0 -200px; /* background approximately centered on stage */
	font-family: 'Raleway', sans-serif;
	font-size: 24px;
}

#stage {
	width: 1000px;
	height: 600px;
	top: 100px;
	position: relative;
	margin: auto;
	border-radius: 10px;
	background-size: cover;
}

/* introduction */
.title {
	position: relative;
	margin: auto;
	padding: 50px;
	color: #FFFFFF;
	text-align: center;
	font-family: 'Audiowide', cursive;
	font-size: 70px;
}

#login {
	bottom: 10px;
	left: 0;
	right: 0;
	position: absolute;
	margin: 0;
	padding: 0;
	list-style: none;
	color: #FFFFFF;
	text-align: center;
}

#login li {
	padding: 5px;
}

#login li:last-child {
	padding: 10px;
}

#playerName {
	width: 300px;
	height: 40px;
	text-align: center;
	font-size: 24px;
	border: 1px solid #000000;
	border-radius: 25px;
}

#fingerprint {
	width: 100px;
	height: 100px;
	position: relative;
	cursor: pointer;
}

#ship {
	width: 300px;
	height: 100px;
	position: absolute;
	z-index: 100;
}

/* text box */
#textBox {
	width: 100%;
	height: 100px;
	bottom: 0;
	position: absolute;
	padding: 10px;
	box-sizing: border-box; /* compensates for padding */
	background-color: rgba(255, 255, 255, .5);
	color: black;
	border: 1px solid #000000;
	border-radius: 10px;
	cursor: pointer;
	z-index: 101;
}

#text {
	width: 860px;
	height: 80px;
	float: right;
	display: flex;
	align-items: center;
}

#portraitBox {
	width: 100px;
	height: 80px;
	float: left;
	display: block;
}

#portrait {
	width: 80px;
	height: 80px;
	position: absolute;
}

/* status box */
#statusBox {
	width: 1000px;
	height: 75px;
	position: relative;
	margin: 110px auto 100px;
	padding: 10px 20px 10px 20px;
	box-sizing: border-box; /* compensates for padding */
	background-color: rgba(255, 255, 255, .5);
	color: black;
	border: 1px solid #000000;
	border-radius: 10px;
	z-index: 101;
	display: flex;
	align-items: center;
}

#status {
	margin-right: 50px;
}

#artifact {
	width: 60px;
	height: 60px;
	margin-top: 10px;
}

#keycard {
	width: 100px;
	height: 50px;
}

/* asteroid game */
#planet {
	width: 300px;
	height: 300px;
	position: absolute;
}

.asteroids {
	position: absolute;
}

/* choice interactivity */
.choice {
	height: 30px;
	position: absolute;
	padding: 10px;
	display: none;
	align-items: center;
	background-color: rgba(255, 255, 255, .5);
	color: black;
	border: 1px solid #000000;
	border-radius: 10px;
	cursor: pointer;
	z-index: 101;
}

/* wire game */
.wire {
	width: 98px;
	height: 98px;
	position: relative;
	float: left;
	border: 1px solid #000000;
	margin: 0;
	display: block;
}

/* door animation */
#door {
	top: 0;
	left: 100px;
	position: absolute;
}

#doorframe {
	top: 0;
	left: 0;
	position: absolute;
}

/* sorting game */
#artifactContainer {
	width: 300px;
	height: 300px;
	position: absolute;
	top: 150px;
	left: 350px;
	margin: 0;
	padding: 0;
	list-style-type: none;
}

.artifactList {
	margin: 0;
	padding: 0;
	float: left;
}

.artifacts {
	width: 300px;
	height: 50px;
	margin: 0;
	padding: 0;
}

/* escape game */
#countdown {
	width: 50px;
	height: 50px;
	float: right;
}

#player {
	width: 50px;
	height: 50px;
	position: absolute;
	bottom: 150px;
	right: 50px;
	z-index: 999;
}

#exit {
	width: 30px;
	height: 100px;
	background-color: red;
	position: absolute;
	top: 100px;
	left: 0;
	opacity: 0.5;
}