/* /activities/Peter's Brain Games/Silhouettes/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;
	position:relative;
}
#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;
}
#name {
	color:brown;
	font-size:2.4em;
	margin:0 auto;
	text-align: center;
	width:450px;
	padding:10px;
	display:none;
}
#ans {
	display:flex;
	flex-wrap: wrap;
	justify-content: space-around;
}
#watch {
	display:block;
	width:129px;
	margin:0 auto;
}

@media screen and (orientation:landscape) {
	#main {
		width:98vw;
		max-width: 1200px;
	}
	#watch {
		position:absolute;
		left:150px;
		top:90px;
		width:103px;
		height:106px
	}
	#ans img {
		width:200px;
		height:200px;
	}
}

