/* /activities/Spider/styles.css */
*:focus {outline: none;} /* prevents outline on clicked items */
* { /* reset */
	padding:0;
	margin:0;
	box-sizing:border-box;
}
body {
	background-color:#eff;
	font-family:sans-serif;
	font-size:12px;
	color: #007;
}
#main {
	margin: 0 auto;
	text-align: center;
}
#head {
	display:flex;
	padding-top:5px;
	justify-content:space-around;
	align-items: center;
}
#head img {
	width:50%;
}
#title, #info, #again {
	cursor:pointer;
}
#title p {
	margin-top: -10px;
}
#panel1 {
	height:93vh;
	background-color: green;
}
.cards {
	position:relative;
}
.cards img {
	width:28px;
	height:40px;
	position:absolute;
}
#panel2 {
	padding:20px;
	display:flex;
	justify-content: center;
	text-align:left;
	font-size:12px;
}
#reward {
	width:50%;
}

@media screen and (min-width:481px) { /* iPad */
	body, #panel2 {
		font-size:16px;
		line-height: 1.5;
	}
	#main {
		width:600px;
	}
	.cards img {
		width:56px;
		height:81px;
	}
}


@media screen and (min-width:1025px) { /* desktop */
	#main {
		width:900px;
	}
	.cards img {
		width:86px;
		height:124px;
	}
}