body {
	background: url("../images/background.jpg");
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	width: 100vw;
	height: 100vh;
	overflow: auto;
}
a#de {
	display: none;
}
h2 {
    color: #fff;
    text-shadow: 1px 1px #000;
    margin: 5px 0;
	text-align: center;
    text-transform: uppercase;
}
h3 {
    margin: 15px 0;
    text-align: center;
	color: #fff;
}
.game-container {
    width: 100%;
    display: inline-flex;
}
.inner-left-score {
    background: #e0edf7;
    border: 1px solid #555;
    border-radius: 5px;
    margin: 15px;
    padding: 15px;
}
.inner-left-score > div {
    margin: 15px 0;
    font-size: 20px;
	color: #102c52;
}
.left-score {
    width: 30%;
	margin-right: 5px;
}
.image-area {
    width: 65%;
    background: rgba(25,25,25,.4);
    border-radius: 5px;
    padding: 10px;
    margin-top: 15px;
}
.question-image {
	vertical-align: middle;
    max-width: 80%;
    height: auto;
}
.image-container {
    text-align: center;
    width: 100%;
}
.answer-box {
    background: #fff;
    width: 50%;
    margin: 5px 10px;
    height: 50px;
    border-radius: 30px;
    border: 2px solid #f3a71e;
	display: flex;
	text-align: center;
	cursor: pointer;
	padding: 0 5px;
    line-height: 16px;
}
.answer-box > div {
	align-self: center;
	width: 100%;
	position: relative;
    top: 2px;
	color: #0056b8;
    font-weight: bold;
}
.answer-row {
    display: inline-flex;
    width: 100%;
}
.difficulty-box {
	margin-top: 20px !important;
    font-size: 16px !important;
    color: #333 !important;
}
@media only screen and (min-width:800px){ 
	.answer-box:hover {
		background: #0056b8;
	}
	.answer-box:hover > div {
		color: #fff;
	}
}
.correct-overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    background: rgba(25,25,25,.8);
    z-index: 100;
    display: none;
	text-align: center;
}
.correct-overlay-subcontainer {
    align-self: center;
    width: 100%;
}
.incorrect-button {
    width: 200px;
    border: 1px solid #fff;
    border-radius: 10px;
    display: none;
    margin: auto;
}
.correct-text {
	color: #fff;
}

@media only screen and (max-width:875px){ 
	.game-container { display: inline-block; }
	.left-score { width: 100%; }
	.image-area { width: 94%; margin: 15px auto; }
	.inner-left-score > div { text-align: center; }
	.inner-left-score { padding: 0 15px; }
}

@media only screen and (max-width:700px){ 
	.question-image { max-width: 90%; }
}

@media only screen and (max-width:600px){ 
	.answer-box { margin: 5px; }
}

@media only screen and (max-width:475px){ 
	.answer-row { display: inline-block; margin-bottom: -10px; }
	.answer-box { margin: 10px auto; width: 90%; }
	.image-area { padding-bottom: 15px; }
	h3 { margin: 15px 0 5px; }
}

@media only screen and (max-width:450px){ 
	.question-image { max-width: 100%; }
}