/* /activities/Peter's Brain Games/Butterflies/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;
}
#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; 
}
.butterfly {
	position:absolute;
	width:158px;
	height:158px;
	margin:60px;
}
.ring {
	margin-bottom:30px;
	width:285px;
	height:285px;
}
#game {
	display:flex;
	flex-wrap: wrap;
	justify-content: space-around;
	margin-top: 20px;
}

@media screen and (orientation:landscape) {
	#note {
		font-size:1em;
	}
	.butterfly {
		width:105px;
		height:105px;
		margin:28px;
	}
	.ring {
		margin-bottom:15px;
		width:158px;
		height:158px;
	}
}
