/* /activities/Oz Movies/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 {
	max-width:50%;
	display:block;
	margin:0 auto;
}
#title {
	font-size: 24px;
	color:blue;
}
#rest {
	text-align: center;
}
#film {
	margin: 10px 0 5px 0;
	max-width: 90%;
	border:5px double brown;
}
#answers {
	display: flex;
	flex-flow: column;
	margin-bottom: 10px;
}
.ans {
	padding: 5px 0;
	background-color: lightblue;
	color:#900;
	font-size: 40px;
	border-radius: 10%;
	border:none;
	box-shadow:0px 0px 0px 3px darkblue;
	width:500px;
	margin: 25px auto;
}
@media screen and (orientation:landscape) {
	#title {
		font-size: 24px;
	}
	#rest {
		margin-top:20px;
		display:flex;
		justify-content: center;
		align-items: center;
	}
	#answers {
		margin-right: 60px;
	}
	.ans {
		font-size: 24px;
		width: 350px;
	}
}
