/* /activities/Peter's Brain Games/Lights/styles.css */

*:focus {outline: none;} /* prevents outline on clicked items */

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

#main {
	width:96vw;
	max-width:960px;
	margin: 1vw auto;
	padding-bottom: 1vw;
}
#head {
	padding-top: .5vw;
	display:flex;
	align-items: center;
	justify-content: space-around;
}
#head div img {
	width:80%;
	display:block;
	margin:0 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;
	font-size:1.5em;
}
#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;
}
#note {
	text-align:center;
	font-size:2em; 
	padding:10px; 
}

#game {
	display:flex;
	flex-wrap: wrap;
	justify-content: space-around;
	margin-top: 20px;
}
.light, #on, #green {
	padding:30px;
}
.light {
	display:none;
}
#on {
	position:absolute;
	display:none;
}
#green {
	position:absolute;
	display:none;
	margin-top:-20px;
	margin-left:-14px;
}

@media screen and (orientation:landscape) {
	#note {
		font-size:1em;
	}
	.light, #on, #green {
		padding:0px;
	}
}
