/* /activities/Peter's Brain Games/Music/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;
	height:110vh;
}
#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;
}
#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:1.2em; 
	padding:10px; 
}
#game {
	display:none;
	align-items: center;
	margin-top:10px;
}
#part1 {
	flex:3;
}
#part2 {
	display:flex;
	flex:4;
	flex-direction: column;
	align-items: center;
}
#smilies {
	display:flex;
	flex-wrap: wrap;
	justify-content: center;
}
.smiley {
	margin:10px;
}
#note2 {
	text-align:center;
	font-size:1.3em;
}
@media screen and (orientation:portrait) {
	#game {
		flex-direction: column;
		align-items: center;
	}
	#picture {
		width:458px;
		height:606px;
	}
	.smiley {
		width:167px;
		height:143px;
		margin:10px 40px;
	}
}
