/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@600&family=Roboto:wght@400;700&display=swap');
* {
	box-sizing: border-box;
}
p {
	font-family: 'Roboto', sans-serif;
	color: #333;
	margin-bottom: 4px;
}
input[type=text] {
	border: none;
	border-radius: 0;
	padding: 0 10px;
	width: 41px;
	margin: 0 2px;
}
textarea {
	border: none;
	border-radius: 0;
	padding: 0 10px;
	resize: none;
	width: 41px;
	margin: 0 2px;
}
.letter {
	color: white;
	font-family: 'Roboto Mono', monospace;
	font-weight: 800;
	font-size: 2em;
	text-transform: uppercase;
	text-align: center !Important;
}
.black {
	background-color: #797c7e;
	letter-spacing: 5px;
}
.green {
	background-color: #78a86b;
}
.yellow {
	background-color: #c6b466;
	line-height: 1em;
}
.final {
	color: black !Important;
	letter-spacing: 10px;
}
.big-gray-button {
	border: none;
	color: white;
	border-radius: 7px;
	background-image: linear-gradient(#ccc, #999);
	font-weight: 700;
	padding: 8px 25px;
	text-decoration: none;
	text-align: center;
	font-size: 1em;
	cursor: pointer;
	margin: 2px;
}
.big-gray-button:active {
	transform: scale(.95);
}
hr {
	height: 0px;
	border: none;
	border-top: 1px solid #999;
	margin: 20px 0 0 10px;
}