@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600&display=swap');

/* Reset some default styles */
body, h1, h2, h3, p, ul, li {
	margin: 0;
	padding: 0;
}

a {
	text-decoration: none;
	color: inherit;
}

* {
	box-sizing: border-box;
}

/* Add some styles for body*/
body {
	font-family: 'Outfit', sans-serif;
	min-height: 100vh;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	flex-direction: column;
	color: #F2F5F9;
	background: url('../images/bg-guess-the-word.jpg') center center no-repeat;
	background-size: cover;
}

.text-large {
	font-size: 2rem;
}

.text-medium {
	font-size: 1.25rem;
}

.text-small {
	font-size: 0.75rem;
}

main {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	row-gap: 0.5rem;
	column-gap: 1.5rem;
}

.card {
	height: 385px;
	width: 365px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-direction: column;
	border-radius: 15px;
	background-color: #192239;
	padding: 25px;
}

.input-word {
	width: 320px;
	height: 65px;
	border-radius: 5px;
	background-color: #4A5567;
	box-shadow: 0px 4px 0px 0px #030616;
	text-align: center;
	letter-spacing: 1rem;
}

.dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
}

.dot-on {
	background-color: #7429C6;
}

.dot-off {
	background-color: #4A5567;
}

.letters {
	width: 100%;
	height: fit-content;
	display: flex;
	padding: 10px;
	gap: 5px;
	flex-wrap: wrap;
  justify-content: center;
}

.letter-input {
	height: 40px;
	width: 40px;
	border-radius: 5px;
	border: 3px solid #4A5567;
	background-color: #192239;
	text-align: center;
}

.button-random, .button-reset {
	height: 35px;
	padding: 7px;
	border-radius: 10px;
	background-color: #C951E7;
	filter: drop-shadow(0px 4px 0px #7b248a);
	font-size: 0.875rem;
}

.button-random {
	width: 125px;
}

.button-reset {
	width: 105px;
}

@media screen and (min-width: 720px) {

}