::-webkit-scrollbar {
	width: 10px;
}

::-webkit-scrollbar-track {
	background: #3c3c3c;
}

::-webkit-scrollbar-thumb {
	background: #555;
}

html {
	background-color: #3c3c3c;
	color: white;
	font-family: Helvetica;
}

#wordle-board {
	padding: 10px 20px 20px 20px;
}

.word-row {
	width: 300px;
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-evenly;
	margin: 10px auto;
}

.flipper {
	width: 50px;
	height: 50px;
}

.letter-square {
	background-color: #3c3c3c;
	border-radius: 10px;
	border: 2px solid #555;
	font-size: 24px;
	text-align: center;
	line-height: 50px;
	font-weight: bold;
}

.incorrect {
	background-color: #555;
}

.keyboard-letter.incorrect {
	background-color: #444;
	color: #aaa;
}

.keyboard-letter.wrong-place,
.wrong-place {
	background-color: #ffcc00;
	border-color: #ffcc00;
}

.keyboard-letter.correct,
.correct {
	background-color: #12b700;
	border-color: #12b700;
}

.keyboard-letter:hover,
.keyboard-backspace:hover,
.button:hover {
	background-color: #666;
}

.keyboard-letter.incorrect:hover {
	background-color: #555;
}

.keyboard-letter.wrong-place:hover {
	background-color: #ffd633;
}

.keyboard-letter.correct:hover {
	background-color: #17eb00;
}

.keyboard-row {
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-evenly;
	margin: 10px auto;
	max-width: 500px;
	min-width: 375px;
}

.keyboard-letter {
	text-align: center;
	width: 12px;
	padding: 7px 10px;
	background-color: #555;
	border-radius: 5px;
	cursor: pointer;
	font-weight: bold;
}

.keyboard-backspace {
	text-align: center;
	padding: 5px 5px 0 5px;
	background-color: #555;
	border-radius: 5px;
	cursor: pointer;
}

.keyboard-letter:hover,
.keyboard-backspace:hover,
.button:hover,
.round-button:hover {
	background-color: #666;
}

#textPrompt {
	margin-top: 20px;
	height: 40px font-size: 20px;
	text-align: center;
}

.button {
	background-color: #555;
	padding: 10px;
	border-radius: 7px;
	text-align: center;
	cursor: pointer;
	width: 80px;
	margin: 7px auto;
}

.round-button {
	width: 20px;
	display: inline-block;
	background-color: #555;
	padding: 10px;
	border-radius: 50%;
	text-align: center;
	cursor: pointer;
}

#keyboard {
	margin-top: 25px;
}

#overlay {
	position: fixed;
	/* Sit on top of the page content */
	display: none;
	/* Hidden by default */
	width: 100%;
	/* Full width (cover the whole page) */
	height: 100%;
	/* Full height (cover the whole page) */
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.5);
	/* Black background with opacity */
	z-index: 2;
	/* Specify a stack order in case you're using a different order for other elements */
	transition: display 1s;
}

#overlay-body {
	position: fixed;
	width: 60%;
	padding: 20px;
	max-width: 1000px;
	top: 50%;
	left: 50%;
	background-color: #3c3c3c;
	margin: 0 auto;
	transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
}