body {
	height: 100vh;
	background: url(../img/background.jpg);
	background-size: cover;
	margin: 0;
}

.header {
	width: 100%;
	height: 10%;
}

.footer {
	position: fixed;
	text-align: center;
	background-color: green;
	width: 100%;
	height: 35px;
	left: 0;
	bottom: 0;
	color: white;
	font-size: 20px;
	padding: 5px;
}

.logocontainer {
	width: 1000px;
	height: 100%;
	margin: auto;
}

.container {
	width: 650px;
	height: 700px;
	margin: auto;
	border: 3px solid red;
	padding: 15px;
	border-radius: 20px;
}

.af-link {
	position: fixed;
	height: 100px;
}

.af-link img { height: 100%; }

/* ----- animation ----- */

@keyframes animateBounce {
	from, to {
		transform: translate3d(0, 0, 0);
	}

	20% {
		transform: translate3d(0px, -5px, 0);
	}
}

@keyframes animateShake {
	from, to {
		transform: translate3d(0, 0, 0);
	}

	25% {
		transform: translate3d(2px, 0px, 0);
	}

	50% {
		transform: translate3d(0px, 1px, 0);
	}

	75% {
		transform: translate3d(-2px, 0px, 0);
	}

	100% {
		transform: translate3d(0px, -1px, 0);
	}
}

/* ----- footer css ----- */

.level-progress {
	width: 100%;
	height: 100%;
	text-align: center;
	position: relative;
}

.txt {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
}

.bar {
	height: 100%;
	background-color: #337ab7;
	border-radius: 0 12px 12px 0;
	transition: width 2s ease-in-out;
}

/* ----- game css ----- */

p.category label { width: 50px; }

.board-row {
	display: flex;
	height: 12.5%;
}

.underlined {
	border-top: 1px solid #c0c0c0;
}

.separator {
	border-left: 1px solid #c0c0c0;
}

.board-block {
	width: 12.5%;
	text-align: center;
	cursor: pointer;
}

.selected {
	/* background-color: lightgreen; */
}

.selected img {
	animation: animateBounce 0.5s infinite; 
}

.highlight {
	background-color: yellow;
}

.highlight img {
	opacity: 0;
	transition: opacity 0.5s linear;
}


.board-block:hover {
	background-color: lightgreen;
}

.board-icon {
	top: 50%;
	position: relative;
	transform: translateY(-50%);
}

.board-icon img {
	height: 60px;
}

.board-icon img.armed {
	filter: drop-shadow(0px -5px 10px rgba(255, 0, 0, 1));
	animation: animateShake 0.2s infinite; 
}

table.scoreboard thead tr {
	background: green;
	color: white;
}

table.scoreboard thead tr th {
	font-size: 20px;
	font-weight: 300;
}