 
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@500&family=Rancho&display=swap');

*{margin: 0; padding: 0; box-sizing: border-box; -webkit-user-select: none; -ms-user-select: none; user-select: none;}

body
{
  font-family: 'Rancho', cursive;
  color: #f03f32c5;
}

/* Header has the logo and name of the game*/
header
{
  display: flex;
  justify-content: left;
  border: 12px double #7A9AA9;
}
header img
{
  width: 480px;
  height: 221px;
  padding-top: 25px;
}
h1
{
  font-size: 196px;
  text-shadow: 3px 1px black;
  text-align: center;
  margin: 0px auto;
}

/* .game is the entire game below the header */
.game
{
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 10px;
  background-image: linear-gradient(#7A9AA9, white, #5FB5FE);
}

/* This area styles the area players will enter thier names*/
h2
{
  text-align: center;
  font-size: 75px;
  text-shadow: 2px 1px black;
  padding-bottom: 30px;
}
.players
{
  height: 300px;
  width: 565px;
}
.form
{
  display: flex;
  justify-content: center;
  margin: 20px;
}
input[type="text"]
{
  height: 40px;
  width: 200px;
  border: 1px solid black;
  border-radius: 3px;
  font-family: 'Rancho', cursive;
  color: #DF2621;
  font-size: 35px;
  padding-left: 5px;
}
button
{
  width: 40px;
  height: 40px;
  background-color: transparent;
  border: none;
  padding: 3px;
  margin-left: 10px;
}
button img
{
  height: 100%;
  width: 100%;
}

/* This area displays the players nam and highlights whose turn it is */
.turns
{
  display: flex;
  justify-content: space-around;
  max-width: 565px;
}
div.turns div
{
  width: 280;
  padding: 20px 20px 0px 20px;
}

.thisone
{
  border:  solid 5px orange;
  border-radius: 20px;
  transition-duration: 500ms;
}
.notthis
{
  border: solid 5px transparent;
}
h4
{
  text-align: center;
  font-size: 75px;
  text-shadow: 2px 1px black;
}
.token
{
  height: 150px;
  margin-left: 50px;
  margin-top: 20px;
}

/* This section shows the score board */
.score
{
  background-image: url(../img/ghostSet.jpeg);
  height: 340px;
  width: 565px;
  color: #F6DC01;
  font-size: 30px;
  padding: 20px;
  margin-right: 25px;
}
table
{
  width: 90%;
  height: 80%;
  text-align: left;
  font-family: 'Orbitron', sans-serif;
  padding: 2px;
}
th
{
  border-bottom: 4px solid #F6DC01;
}

/* This sections is the tictactoe board */
.game-board
{
  display: flex;
}
div[id^="row-"] div
{
  border:  2px solid #F03E32;
  height: 200px;
  width: 200px;
}
div#row-1 div {border-left: none;}
div#row-3 div {border-right: none;}
div[id^="row-"] div:first-child {border-top: none;}
div[id^="row-"] div:last-child {border-bottom: none;}

/* reset buttons */
.resets button
{
  width: fit-content;
  height: fit-content;
  font-size: 30px;
  padding: 5px 15px;
  background-color: #E45A2B;
  font-family: 'Rancho', cursive;
  border: #7A9AA9 solid 2px;
  border-radius: 5px;
  color: #F6DC01;
}
.resets button:hover
{
  cursor: pointer;
  color: #646f15;
}
.resets
{
  display: flex;
  justify-content: space-evenly;
  margin-top: 25px;
}

/* This section shows the winners token larger and also the cat game token when player names are being entered */
.winner
{
  position: absolute;
  z-index: +1;
  height: 612px;
  width: 660px;
  display: flex;
  justify-content: center;
  right: 0px;
  top: 295px;
}
.winner img
{
  height: 600px;

}

/* This is just to hide various elements */
.hide
{
  display: none;
}

/*
colors light blue - #5FB5FE  light green - #C4D929 yellow - #F6DC01 peachish - #F2B885 dark orange - #E45A2B 
        zorak green - #6DC2BA ghost red - #DF2621 gray - #7A9AA9 SGlogo red - #F03E32

font-family: 'Delicious Handrawn', cursive;
font-family: 'Rancho', cursive;
*/