@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300&display=swap');

* 
{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	user-select: none;
	font-family: 'Noto Sans JP', sans-serif;
	color: white;
}

body
{
	background-color: #2d2d30;
}

#tie
{
	position: fixed;
	font-size: 35px;
	right: 0px;
	padding-right: 100px;
}

#playButton
{
	cursor: pointer;
	font-size: 25px;
	background-color: black;
	width: 200px;
	height: 50px;
	position: fixed;
	top: 20px;
	left: 10px;
	border-radius: 25px;
	border: none;
	background-color: red;
	transition: color 500ms;
}

#playButton:hover
{
	color: black;
}

h1#game-message
{
	padding-bottom: 10px;
	font-size: 50px;
	margin-top: 10px;
	margin-bottom: 30px;
	text-align: center;
	border-bottom: solid red 2px;
}

input
{
	background-color: #2d2d30;
	border-radius: 25px;
	padding-left: 10px;
	border: 1px solid red;
}

.playerOne
{
	position: fixed;
	font-size: 25px;
	left: 0px;
	width: 178px;
	margin-left: 25px;
}

.playerTwo
{
	position: fixed;
	font-size: 25px;
	right: 0px;
	width: 178px;
	margin-right: 25px;
}

#playerButtons
{
	cursor: pointer;
	font-size: 15px;
	width: 100px;
	height: 25px;
	background-color: red;
	border: none;
	border-radius: 25px;
	transition: color 500ms;
}

#playerButtons:hover
{
	color: black;
}

h3
{
	margin-top: 20px;
}

div#game-board 
{ 
	overflow: hidden; 
	margin: 0px auto;
	padding-top: 0px;
	width: 455px;
}

div[id^="row-"] { clear: both; }

div[id^="row-"] div
{
	border: 5px solid red;
	height: 150px;
	width: 150px;
	float: left;
	text-align: center;
	font-size: 100px;
}

div#row-1 div { border-top: none; }
div#row-3 div { border-bottom: none; }
div[id^="row-"] div:first-child { border-left: none; }
div[id^="row-"] div:last-child { border-right: none; }