@import url('https://fonts.googleapis.com/css2?family=Dokdo&display=swap');

body {
	font-family: 'Dokdo';
	margin-top: 20px;
	margin-bottom: 20px;
	background-color:rgb(88, 171, 255);
}

td {
	font-size: 22px;
	cursor: url('./cursor.cur'), auto;
    user-select: none;
	min-width: 30px;
	height: 47px;
}

button {
	background-color: #d09618;
	font-family: "Dokdo";
	color: rgb(231, 231, 231);
	padding: 15px;
	font-size: 20px;
	font-weight: bold;
	border: none;
	border-radius: 15px;
	margin: 0 auto;
	margin-bottom: 50px;
	transition: background-color 0.4s, box-shadow;
	box-shadow: 0 10px rgb(128, 75, 0);
}

button:hover {
	cursor: url("./cursor.cur"), auto;
}

button:active {
	box-shadow: 0 5px rgb(66, 0, 0);
	transform: translateY(4px);
}

#gameBoard {
	width: 700px;
	background-color: rgb(255, 177, 75);
	border-radius: 20px;
	border: 7px solid rgb(92, 0, 0);
}

.all-boxes {
	border-collapse: collapse;
}

.thick {
	border-color: rgb(92, 0, 0) !important;
	border-width: 10px !important;
}	

.invisible {
	display: none;
}

.sideMargins {
	margin: -15px;
}

.topMargin {
	margin-top: 40px;
}

.highlightX {
	background-color: rgb(137, 0, 23);
}

.highlightO {
	background-color: rgb(0, 30, 139);
}

.highlight {
	background-color: rgb(114, 250, 23);
}

table.spacing {
	margin: 15px;
}

td.spacing {
	padding: 5px 15px;
}

.instructions {
	background-color: greenyellow;
	padding: 5px;
	border-radius: 15px;
	box-shadow: 5px 10px green;
	font-weight: 500;
	font-size: larger;
	margin: 30px;
	margin-top: 10px;
}

.center {
	text-align: center;
	display: flex;
	justify-content: center;
}

.inputStyle {
	visibility: hidden;
}

.centerAlign {
	display: flex;
	flex-flow: column wrap;
	align-items: center;
}

h1 {
	margin-top: 10px;
	font-size: 64px;
	font-weight: bold;
	color: rgb(180, 48, 0);
	background-image: linear-gradient(to right, rgb(255, 136, 0), rgb(226, 102, 0));
	text-shadow: 1px 2px white;
	padding: 20px;
	border-radius: 10px;
	box-shadow: 0px 5px black;
}

h2 {
	text-shadow: 1px 2px white;
	color: brown;
	margin-top: 15px;
	font-size: 30px;
}

.mainContainer {
	margin-top: 30px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-evenly;
	align-items: flex-start;
}

.mainContainer > * {
	width: 50%;
	min-width: 634px;
}

.top-left {
	border-bottom: 2px solid black;
	border-right: 2px solid black;
}

.top-middle {
	border-left: 2px solid black;
	border-bottom: 2px solid black;
	border-right: 2px solid black;
}

.top-right {
	border-left: 2px solid black;
	border-bottom: 2px solid black;
}

.middle-left {
	border-top: 2px solid black;
	border-right: 2px solid black;
	border-bottom: 2px solid black;
}

.middle-middle {
	border-top: 2px solid black;
	border-left: 2px solid black;
	border-right: 2px solid black;
	border-bottom: 2px solid black;
}

.middle-right {
	border-top: 2px solid black;
	border-left: 2px solid black;
	border-bottom: 2px solid black;
}

.bottom-left {
	border-top: 2px solid black;
	border-right: 2px solid black;
}

.bottom-middle {
	border-left: 2px solid black;
	border-top: 2px solid black;
	border-right: 2px solid black;
}

.bottom-right {
	border-left: 2px solid black;
	border-top: 2px solid black;
}