.text{
	color: white;
}

.btn{
	margin-top: 15px;
	
	font-size: medium;
}

#gameWindow{
	margin: auto auto auto auto;
    border: 1px solid #b8b8b8;
}

#inputs{
	margin-left: 10px;
	border-radius: 25px;
	text-align: center;
	border: 1px solid white;
	padding: 10px;
	height: 100%;
}

#boardLayout{
	margin-top: 50px;
}

#content{
	justify-content: center;
	display: grid;
    grid-template-columns: 20% max-content 20%;
	width: 100%;
	height: 100%;
}

.smallInput{
	text-align: center;
	font-family: "Tilt Neon", cursive;
	color: rgb(0, 0, 0);
	border: none;
	border-radius: 5px;
	width: 5em;
}

.inputField{
	font-family: "Tilt Neon", cursive;
	color: rgb(0, 0, 0);
	border: none;
	border-radius: 5px;
	width: 100%;
	text-align: center;
}

.leftBox{
	justify-self: right;
	align-items: center;
	
	left: 0px;
	right: 0px;
	margin: auto 5px auto auto;

	width: max-content;
	height: max-content;
}

.rightBox{
	justify-self: left;
	align-items: center;
	
	left: 0px;
	right: 0px;
	margin: auto 5px auto auto;

	width: max-content;
	height: max-content;
}


#titleDiv{
	text-align: center;
}

html{
	width: 100%;
	padding: 0px;
	margin: 0px;
}

#desc{
	position: relative;
	margin-right: 10px;
	border-radius: 25px;
	text-align: center;
	border: 1px solid white;
	padding: 10px;
	width: 300px;
	height: 100%;
}

#detailBox{
	margin: auto;
	left: 0px;
	right: 0px;
	height: 50%;
	width: 50%;
	position: fixed;
	border-radius: 10px;
	border: solid 1px white;
	background-color: rgb(37, 36, 36);
}

#xBtn{
	position:absolute;

	top: 0px;
	right: 0px;

	margin-right: 5px;
	margin-top: 5px;
}

#info-btn{
	position:absolute;

	bottom: 0px;
	right: 0px;

	margin-right: 5px;
	margin-bottom: 5px;
}

.hidden{
	visibility: hidden;
}