* {
	box-sizing: border-box;
}
@font-face {
	font-family: quicksand;
	src: url(Quicksand-SemiBold.ttf);
}

body {
	width: 100vw;
	margin: 0;
	color: #101010;
	background-color: #f0f0f0;
	font-family: quicksand, sans-serif;
	text-align: center;
}
#main-container {
	width: 96%;
	max-width: 600px;
	background-color: #f8f8f8;
	border-radius: 4px;
	margin: 20px auto;
	padding: 20px;
}
#message-box {
	position: fixed;
	left: 50vw;
	top: 50vh;
	width: 90%;
	max-width: 540px;
	padding: 50px;
	background-color: #e8e8e8;
	z-index: 1;
	transform: translate(-50%, -50%);
}
#message-text {
	font-size: 22px;
	margin: 12px;
}
#message-button {
	display: block;
	background-color: #e0e0e0;
	font-size: 20px;
	border-radius: 4px;
	padding: 12px;
	margin: 12px auto;
	width: 60%;
}
#game-title {
	font-size: 40px;
	font-weight: bold;
	margin: 15px;
}
.game-description {
	font-size: 18px;
	margin: 12px;
}
#guess-container {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	padding: 8px 0;
}
#level-guess-input {
	display: block;
	background-color: #e0e0e0;
	font-size: 28px;
	border: none;
	border-radius: 8px;
	padding: 8px;
	margin: 4px;
	text-align: center;
	font-family: quicksand;
}
#level-guess-button {
	display: block;
	background-color: #e0e0e0;
	font-size: 22px;
	border-radius: 8px;
	padding: 10px;
	margin: 4px;
}
#levels-guessed-title {
	font-size: 32px;
}
#levels-guessed {
	border: none;
	border-spacing: 0;
	width: 100%;
	margin-top: 24px;
}
th,td {
	border: 1px solid #101010;
	padding: 4px;
	font-size: 18px;
}
th {
	font-weight: bold;
	background-color: #f0f0f0;
}
.tg-far {
	background-color: #ff8080;
}
.tg-mid {
	background-color: #ffff60;
}
.tg-close {
	background-color: #80ffff;
}
.tg-exact {
	background-color: #60f060;
}
