:root {
	--primary: #05f385; /* Background/Headers */
	--secondary: #212529; /* Panels/Sections */
	--lightest: #f8f8ff; /* text/highlights */
}

.title {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 10px;
	margin: 20px 0;
	color: var(--lightest);
	filter: drop-shadow(3px 3px 2px black);
}

.title > h3 {
	font-family: "Montserrat", sans-serif;
}

#game {
	font-family: "Montserrat", sans-serif;
	background-color: var(--secondary);
	color: var(--lightest);
	padding: 0.4em 0.5em;
	border-radius: 3px;
	font-size: 0.5rem;
}

#game > option {
	font-family: "Montserrat", sans-serif;
}

.grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	text-align: center;
	height: 100%;
}

.round {
	display: flex;
	flex-direction: column;
}

.round > p {
	color: var(--lightest);
	filter: drop-shadow(3px 3px 2px black);
	font-family: "Montserrat", sans-serif;
	font-size: 1.2em;
}

.bracket {
	display: flex;
	flex-direction: column;
	justify-content: space-evenly;
	align-items: center;
	flex-grow: 1;
}

.group {
	border: 1px solid var(--lightest);
	width: 10em;
}

.group > div {
	font-family: "Montserrat", sans-serif;
	font-size: 0.8em;
	padding: 10px;
}

.group > div:first-child {
	border-bottom: 1px solid var(--lightest);
}

.lose {
	background-color: #cc0000;
}
.win {
	background-color: var(--primary);
}

.hide {
	display: none;
}
