* {
	box-sizing: border-box;
	padding: 0;
	margin: 0;
	border: 0;
}

.lanes {
	height: 30rem;
	margin: auto;
	width: 95%;
	/*font-size: 0;*/
}

.lane {
	display: inline-block;
	float: left;
	height: 100%;
	width: 30%;
	overflow: hidden;
	box-sizing: border-box;
}

.wall {
	width: 5%;
}


.playerhand {
	margin-left: 20%;
	width: 40em;
	height: 7em;
	background: grey;
	bottom: 0;
	border-radius: 10px;
	padding: 0 10px;
}

.opponenthand {
	margin: auto;
	width: 40em;
	height: 7em;
	background: grey;
	border-radius: 10px;
	padding: 0 10px;
}

.card {
	display: inline-block;
	height: 6rem;
	width: -webkit-calc( 100% / 6 );
	width: -moz-calc( 100% / 6 );
	width: -ms-calc( 100% / 6 );
	width: -o-calc( 100% / 6 );
	width: calc( 100% / 6 );
	border: 3px solid black;
	border-radius: 7px;
	text-align: center;
	line-height: 7rem;
	background-color: white;
	font-size: 20px;
	margin-top: 0.25rem;
}

.part {
	width: 100%;
	height: 47%;
	text-align: center;
}

.part.centre {
	height: 6%;
	background-color: rgba(255, 0, 0, 0.5);
}

.lane .card {
	width: 3rem;
}

.playerhand .card {
	background-image: url(http://cdn.imgs.steps.dragoart.com/how-to-draw-the-rebel-alliance-starbird-from-star-wars-starbird-symbol-step-6_1_000000138379_5.gif);
	background-size: contain;
	background-repeat: no-repeat;
	font-size: 1.5em;
	background-position: center;
	overflow: hidden;
}

.playerhand .card :hover {
	font-size: 200%;
	cursor: pointer;
}

.opponenthand .card {
	background-image: url(http://www.starwarsintheclassroom.com/content/ss/images/symbols/imperial.png);
	background-size: contain;
	background-repeat: no-repeat;
}

.yours .card:hover {
	font-size: 1.5rem;
}

.hidden {
	display: none;
}

.movelog {
	text-align: center;
	background-color: black;
	color: yellow;

}

.blurb {
	width: 60%;
	margin: auto;
	background: black;
	color: yellow;
	border-bottom-right-radius: 10px;
	border-bottom-left-radius: 10px;
	margin-top: 0;
	margin-bottom: 10px;
	padding: 10px;
}

a {
	text-decoration: none;
	color: white;
}

.hid {
	background: grey;
	opacity: 0.6;
	height: 100%;
}

.card.selected {
	font-size: 2.5rem;
	text-decoration: underline;
}