#picbox {
	margin: 0px auto;
	width: 100%;
	max-width: 640px;
	height: 100%
}
#boxcard {
	z-index: 1;
	margin: 10px 0 0;
}
#boxcard div{
	float: left;
	width: 100px;
	height: 100px;
	margin: 5px;
	padding: 2px;
	border: 2px solid #6257ff;
	cursor: pointer;
	border-radius: 6px;
	box-shadow: 0 1px 2px rgba(0,0,0,.5);
  	background: #2600ff;
	z-index: 2;
}
#boxcard div img {
	display: none;
	border-radius: 5px;
	z-index: 3;
	width: 100%;
	height: 100%
}
#boxbuttons {
	text-align: center;
	margin: 1px;
	display: block;
}
#boxbuttons .button {
	text-transform: uppercase;
	background: #090cb9;
	padding: 5px 10px;
	margin: 5px;
	border-radius: 10px;
	cursor: pointer;
}
#boxbuttons .button:hover {
	background: rgb(255, 68, 0);
}

@media (max-width: 500px) {
	#boxcard div{
		float: left;
		width: 70px;
		height: 70px;
		margin: 3px;
		padding: 2px;
		border: 2px solid #6257ff;
		cursor: pointer;
		border-radius: 6px;
		box-shadow: 0 1px 2px rgba(0,0,0,.5);
		  background: #2600ff;
		z-index: 2;
	}
	}