/* /activities/FreeCell/styles.css */
*:focus {outline: none;} /* prevents outline on clicked items */
* { /* reset */
	padding:0;
	margin:0;
	box-sizing:border-box;
}
body {
	background-color:green;
	font-family:sans-serif;
	font-size:12px;
	color: #007;
}
button {
	font-size: 12px;
	z-index:1000;
}
#main {
	margin: 0 auto;
	text-align: center;
}
#head {
	display:flex;
	padding-top:5px;
	justify-content:space-around;
	align-items: center;
}
#head img {
	width:40%;
}
#info, #again {
	cursor:pointer;
}
#title p {
	margin-top: -10px;
}
#panel1 {
	height:93vh;
	position:relative;
}
#middle {
	width:20%;
	position:absolute;
	display:flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	margin-top:3px;
}
#light {
	width:25%;
	display:none;
}
.top_section, .tableau {
	display:none;
	position:absolute;
}
.top_section {
	width:10%;	
}
.tableau {
	width:11%;
}
.card, .foundation {
	display:none;
	position:absolute;
}
#btn, #reset {
	visibility: hidden;
	padding:3px 3px 6px 3px;
}
#panel2 {
	color:ivory;
	padding:20px;
	display:flex;
	justify-content: center;
	text-align:left;
	font-size:12px;
	display:none;
}
.block {
	color:pink;
}
#reward {
	width:40%;
	display:none;
}

@media screen and (min-width:481px) { /* iPad */
	body, #panel2 {
		font-size:16px;
		line-height: 1.5;
	}
	button {
		font-size:16px;
	}
}

@media screen and (min-width:1025px) { /* desktop */
	#main {
		max-width:1025px;
	}
}