/* /activities/Peter's Brain Games/Animals/styles.css */
*:focus {outline: none;} /* prevents outline on clicked items */

body {
	font-family:arial,sans-serif; 
	font-size:24px;
	background-color:#400;
}

#main {
	width:960px;
	height:1200px;
	background-color:#d2ffd2;
	margin:0 auto;
	border:5px double blue;
	font-family:arial,sans-serif;
	font-size:24px;
}
#head {
	padding-top: .5vw;
	display:flex;
	align-items: center;
	justify-content: space-around;
}
#head div img {
	width:80%;
	display:block;
	margin:0 auto 20px auto;
}
#title {
	color:blue;
	font-style:italic;
	font-family:serif;
	font-size:2em;
	text-align:center;
}
#stars {
	text-align:center;
	margin-top:20px;
}
#stars img {
	cursor:pointer;
	padding:10px;
	width:75px;
	height:69px;
}
#best {
	text-align:center;
}
#start {
	margin:0 auto;;
	display:flex;
	flex-flow: column;
	align-items: center;
}
.round_button {
	width:80px;
	height:110px;
	cursor:pointer;
}
.round_button p {
	margin-top:0px;
}
#pic {
	width:624px;
	margin:0 auto;
	border:5px double brown;
	box-shadow:5px 5px 3px grey;
	padding:10px 10px 5px 10px;
	background-color: ivory;
}
#pic img {
	width:624px;
	height:396px;
}
#ans {
	display:flex;
	flex-wrap: wrap;
	justify-content: space-around;
	margin:30px;
}
button {
	margin:40px 20px;
	padding:5px 15px;
	background-color: ivory;
	font-size:2em;
	color:brown;
	letter-spacing:2px;
	border:8px solid brown;
	border-radius: 20px;
	box-shadow:5px 5px 3px grey;
}
#watch {
	display:block;
	width:129px;
	margin:0 auto;
}

@media screen and (orientation:landscape) {
	#pic {
		width:364px;
	}
	#pic img {
		width:364px;
		height:231px;
	}
	button {
		font-size:1.4em;
		margin:10px 5px;
		border-width: 5px;
	}
	#watch {
		margin: -350px 0 0 70px;
	}
}

