/*TicTacToeStyle.css to accompany TicTacToeMain.htm*/

body
{
     background: #3e3542;
		 color: #666666;
}

h1
{
     text-align: center;
		 color: #FFFFFF;
		 font-size: 50px;
}

table
{
     width: 280px;
		 overflow: auto;
		 margin: 40px auto;
		 background: #e0b9f5;
		 border-radius:10px;
}

td
{
     float: left;
		 margin: 10px;
		 height: 70px;
		 width: 70px;
		 font-size: 50px;
		 background: #917a9d;
		 color: #FFFFFF;
		 text-align: center;
		 border-radius: 5px;
}

td:hover, #reset:hover
{
     cursor: pointer;
		 background: #000000;
		 
}

#reset
{
		 background: #FFFFFF;
		 color: #000000;
		 font-size: 24px;
		 width: 15%;
		 padding: 15px;
		 border-radius: 5px;
}

footer
{
     display: block;
		 text-align: center;
		 padding-top: 5px;
}

#textbox
{
     text-align: center;
		 width: 200px;
		 height: 40px;
		 font-size: 30px;
}
