/* /activities/Movie Soundtracks/styles.css */

*:focus {outline: none;} /* prevents outline on clicked items */
* { /* reset */
	padding:0;
	margin:0;
	box-sizing:border-box;
}
body { /* prevents text selection */
	-webkit-user-select: none; /* Safari 3.1+ */
	-moz-user-select: none; /* Firefox 2+ */
	-ms-user-select: none; /* IE 10+ */
	user-select: none; /* Standard syntax */
}
body {
	background-color:ivory;
	font-family:sans-serif;
}
#main {
	background-color:ivory;
	width:92vw;
	max-width: 800px;
	margin: 1vw auto;
	padding-bottom: 1vw;
}
#head {
	padding-top: .5vw;
	display:flex;
	align-items: center;
	justify-content: space-around;
}
#head div img {
	width:70%;
	display:block;
	margin:0 auto;
}
#title {
	font-size: 36px;
	color:blue;
}
#rest {
	text-align: center;
}
#question {
	height:150px;
}
#answers {
	display: flex;
	flex-flow: column;
	margin-bottom: 20px;
}
#left,#right {
	display: flex;
	flex-flow: column;
}
.ans {
	padding: 5px 0;
	background-color: #cfc;
	color:#900;
	font-size: 50px;
	border-radius: 10%;
	border:none;
	box-shadow:0px 0px 0px 3px darkgreen;
	width:600px;
	margin: 30px auto;
}

@media screen and (orientation:landscape) {
	#title {
		font-size: 24px;
	}
	#rest {
		margin-top:20px;
	}
	#question {
		height:70px;
	}
	#answers {
		margin: 0 auto;
		flex-flow: row;
		justify-content: space-around;
		width: 900px;
	}
	.ans {
		font-size: 24px;
		width:400px;
		margin: 20px auto;
	}
}
