.hidden {
  display: none !important;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  height: 100vh;
  width: 100vw;
  font-family: "Exo", sans-serif;
  text-align: center;
  background-color: #058ed9;
  color: #f0f7f4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

h1 {
  font-size: 100px;
  text-shadow: 5px 5px 5px #db162f;
  margin-bottom: 0px;
  margin-top: 10px;
}

h2 {
  margin: 5px;
}

button {
  font: inherit;
  font-size: 20px;
  color: inherit;
  background: #db162f;
  padding: 10px;
  border: 3px solid #f0f4f7;
  border-radius: 10px;
  margin: 10px;
}

.status {
  border: 3px solid #f0f4f7;
  padding: 5px;
  font-size: 25px;
  border-radius: 10px;
  margin-bottom: 10px;
}

.game-container {
  display: grid;
  grid-template-columns: repeat(3, auto);
  width: 306px;
  margin: 30px auto;
}

.board-cell {
  font-family:'Segoe UI', sans-serif;
  width: 100px;
  height: 100px;
  box-shadow: 0 0 0 5px #db162f;
  border: 3px solid #db162f;
  border-radius: 10px;
  cursor: pointer;
  line-height: 100px;
  font-size: 60px;
}

