* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.game-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 1.5rem;
  height: 100vh;
  background-color: #1d244b;
}

.tic-game {
  display: flex;
  flex-wrap: wrap;
  width: 300px;
  height: 300px;

  -webkit-box-shadow: 3px 5px 5px 0px rgba(0,0,0,0.75);
  -moz-box-shadow: 3px 5px 5px 0px rgba(0,0,0,0.75);
  box-shadow: 3px 5px 5px 0px rgba(0,0,0,0.75);
}

.cell {
  width: 100px;
  height: 100px;
  background: lightcoral;
  border: 1px solid black;

  display: flex;
  justify-content: center;
  align-items: center;
}

.cross {
  width: 60px;
  height: 60px;
  position: relative;
}
.cross:after {
  content: '';
  height: 60px;
  border-left: 3px solid #fff;
  position: absolute;
  transform: rotate(45deg);
  left: 28px;
}

.cross:before {
  content: '';
  height: 60px;
  border-left: 3px solid #fff;
  position: absolute;
  transform: rotate(-45deg);
  left: 28px;
}

.circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 3px solid #fff;
}

.score {
  font-size: 1.5rem;
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  font-style: oblique;
  color: white;
}