/* /Jigsaws/pop.css */
*:focus {outline: none;} /* prevents outline on clicked items */
* { /* reset */
	padding:0;
	margin:0;
	box-sizing:border-box;
}
body { /* prevents text selection */
	-webkit-user-select: none; /* Safari 3.1+ */
	-moz-user-select: none; /* Firefox 2+ */
	-ms-user-select: none; /* IE 10+ */
	user-select: none; /* Standard syntax */
}
body {
	background-color:#008;
	font-family:sans-serif;
	font-size:24px;
}
p {
	padding: 5px;
}
b {
	color:brown;
}
#main {
	background-color:ivory;
	width:98vw;
	max-width:800px;
	margin: 1vw auto;
	padding-bottom: 1vw;
}
#head {
	padding-top: .5vw;
	display:flex;
	align-items: center;
	justify-content: space-around;
}
#head div img {
	width:70%;
	display:block;
	margin:0 auto;
}
#title {
	color:blue;
	font-style:italic;
	font-family:serif;
	text-align:center;
	font-size:1.2em;
}
#rest {
	text-align: center;
	display:flex;
	flex-flow: column;
	align-items: center;
}
#win2, #win3, #win4, #mac2, #mac3, #mac4 {
	width:100%;
	height:auto;
	border:2px solid black;
	margin:5px;
}
#win2 {
	max-width: 262px;
}
#win3 {
	max-width: 299px;
}
#win4 {
	max-width: 453px;
}
#mac2 {
	max-width: 419px;
}
#mac3 {
	max-width: 208px;
}
#mac4 {
	max-width: 418px;
}

