/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
	font-family: sans-serif;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
	background-color: black;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

html {
	box-sizing: border-box;
}
*, *:before, *:after {
	box-sizing: inherit;
}

b {
	font-weight: bold;
}

.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

/* Real stuff */


.game {
	margin: 0 auto;
	background: black;
}

.canvas {
	width: 100%;
	padding-top: 100%;
	position: relative;
}

input,
.btn {
	line-height: 40px;
	height: 40px;
	border-radius: 5px;
	background: white;
	color: #4c4c4c;
	width: 100%;
	display: block;
	text-align: center;
	font-size: 24px;
	text-decoration: none;
}

.section.btns-2 input,
.section.btns-2 .btn {
	width: 47.5%;
	margin-right: 5%;
	float: left;
	margin-bottom: 10px;
}

.section.btns-2 input:nth-child(2n),
.section.btns-2 .btn:nth-child(2n) {
	margin-right: 0px;
}

.btn.btn-main {
	background: #1e862d;
	color: white;
}

.section {
	padding: 10px;
}

.section.canvas {
	padding: 0px;
}

.section.speech {
    text-align: center;
    font-size: 18px;
    color: white;
}

.waiting {
	background: #029a9a;
}
.found {
	background: #029a2a;
}
.not-found {
	background: #9a0202;
}

.section.history {
	margin-top: 40px;
    font-size: 16px;
    color: white;    
}

.section.history .history-entry {
	margin-bottom: 20px;
	position: relative;
}

.section.history .history-entry img {
	width: 100%;
	height: auto;
	background: white;
}

.section.history .history-entry div {
	padding: 10px;
}

.section.history .history-entry div.author {
	line-height: 30px;
	height: 30px;
	padding: 0px 10px;
	font-family: 'Press Start 2P', cursive;
	background: white;
	color: black;
	font-size: 10px;
}


h1 {
	color: white;
	font-family: 'Press Start 2P', cursive;
	font-size: 35px;
	padding: 20px 0px;
	text-align: center;
	line-height: 130%;
}

h1.game-title {
	font-size: 14px;
}

h2 {
    font-size: 18px;
    color: white;    
	font-family: 'Press Start 2P', cursive;
	text-align: center;
	margin-top: 10px;
	margin-bottom: 10px;
}


@keyframes blink {
  50% {
    opacity: 0.0;
  }
}
@-webkit-keyframes blink {
  50% {
    opacity: 0.0;
  }
}

.slider {
	background: black;
	text-align: center;
}

.slider .slide {
	color: #dedede;
	font-family: sans-serif;
	padding: 10px;
	text-align: left;
    line-height: 20px;
}

.slider .slide .first-letter{
    font-size:300%;
    line-height: normal;
}

.slider .slide p {
	margin: 10px 0;
}

.st {
	text-decoration: line-through;
}

.container-width {
    margin: 0 auto;
}

@media screen and (max-width: 768px) {
	.container-width {
		width: 100%;
	}

	.btn {
		font-size: 20px;
	}
}