:root {
	--main-lines-c: rgb(0,0,0);
	--main-lines-w: 3px;
	--inner-lines-c: rgb(87,87,87);
	--inner-lines-w: 1px;
	--set-color: rgb(141, 177, 240);
	--highlight-color: #394252;
}

body{
	height: 100vh;
	/* font-family: 'Lobster Two', cursive; */
	font-family: 'Comfortaa', cursive;
	background-color: antiquewhite;
	overflow: hidden;
}

nav{
	color: whitesmoke;
	height: 10vh;
	display: flex;
	align-items: center;
	justify-content: space-around;
	background-color: var(--highlight-color);
}

.main-container{
	padding: 2rem;
	width: 100vw;
	height: 90vh;
	color: #313131;
}

.game-info {
	height: 90vh;
}

.square {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 3.5rem;
	height: 3.5rem;
	border: var(--inner-lines-w) solid var(--inner-lines-c);
	font-size: 1.5rem;
	font-weight: 700;
	transition: ease-in 0.1s;
	aspect-ratio: 1;
}

.square:nth-of-type(3){
	border-right: solid var(--main-lines-c) var(--main-lines-w);
}

.square:nth-of-type(7){
	border-left: solid var(--main-lines-c) var(--main-lines-w);
}

.h{
	border-bottom: solid var(--main-lines-c) var(--main-lines-w);
}

.highlight{
	border: 4px solid var(--highlight-color);
}
.setCol {
	background-color: var(--set-color);
}

i{
	color: black;
}

#button-strip{
	border: 1px solid var(--highlight-color);
	border-radius: 4px;
}

.gameListSelect{
	background-color: rgb(141, 177, 240);
}

.gameList:hover{
	background-color: rgb(76, 160, 76);
}

#btn-set, #btn-reset, #btn-clear{
	cursor: pointer;
	width: 100px;
}

.btn{
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	font-size: 1.2rem;
	font-weight: 700;
}

.fas{
	cursor: pointer;
	pointer-events: none;
}
#icon-lock{
	color: #394252;
}
.fa-star, .fa-star-half{
	color:gold;
}