td.miss{
	background-color: red;
}

td.get{
	background-color: green;
}

td{
	transition: background 0.25s;
	border-radius: 2px;
}

body{
	margin:0;
	height:100vh;
	width:100vw;
	display:flex;
	justify-content:center;
	align-items:center;
	flex-direction:column;
	font-family:sans-serif;
}

table{
/* transform-origin:center top;	transform:scale(2) translate(10px); */
}

input{
	cursor:pointer;
}

.overlay{
	display:flex;
	justify-content:space-between;
}

#stop{
	display:none;
}

button{
	width:100%;
}

#app{
	transform:scale(2);
	position:relative;
	z-index:10;
	background:#ffffff;
}

#alert{
	left:0;
	width:100%;
	height:100%;
	position:absolute;
	font-size:0.9rem;
	text-align:center;
	display:flex;
	opacity:0;
	transition:opacity 0.25s;
}

#alert.show{
	opacity:1;
	z-index:11;
}

#alert .container{
	width:250px;
	height:250px;
	margin:auto;
	display:flex;
	justify-content:center;
	align-items:center;
	flex-direction:column;
	background:#ffffff;
	box-shadow: 15px 15px 50px rgba(0, 0, 0, 0.25);
}


#alert .score{
	font-size:3rem;
}

#alert button{
	width:50%;
	margin-top:25px;
}