* {
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
}

body {
  font-family: "Chalkboard", sans-serif;
  background-image: url("./assets/background.PNG");
  background-size: cover;
  margin: 0;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
}

.body-container header {
  display: flex;
  justify-content: center;
  font-size: 50px;
}

.body-container {
  width: 100%;
  height: 100%;
}

main {
  height: 95%;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
}

.player-container {
  width: 20%;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  align-items: center;
}

.middle-section {
  width: 60%;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  align-items: center;
}

.middle-header {
  display: flex;
  justify-content: center;
  height: 10%;
}

.middle-header h2 {
  display: flex;
  flex-direction: row;
}

.heading-image {
  width: 450px;
}

.its-your-turn {
  font-size: 30px;
}

.tictactoe-container {
  width: 500px;
  height: 70%;
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
}

.box {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  flex: 1 0 30%;
  height: 33%;
}

.bottom {
  border-bottom: 2px solid black;
}

.right {
  border-right: 2px solid black;
}

.aussie-img{
  width: 100px;
}

.token {
  width: 50px;
  height: 70px;
}

.its-your-turn-token,
.header-image {
  height: 60%;
  padding-left: 5px;
  padding-right: 5px;
}
