html,
body {
  height: 100%;
  margin: 0;
}

body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  background-color: #f0f0f0;
  margin: 0;
  font-family: sans-serif;
}

.board-container {
  display: flex;
  width: 100vw;
  max-width: 1000px;
  justify-content: center;
  align-items: center;
}

.board {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  grid-template-rows: repeat(8, 1fr);
  border: 2px solid #333;
  width: 90vw;
  max-width: 900px;
  height: 90vw;
  max-height: 900px;
}

.cell {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  margin: 0px;
  font-size: 1vw;
  border: 2px solid #333;
}
.cell .player-one {
  color: #008779;
}
.cell .player-two {
  color: #770101;
}

.current-pawn {
  background: radial-gradient(circle, rgb(44, 235, 29) 0%, rgb(133, 241, 29) 36%, rgb(196, 245, 255) 100%);
}

.pawn-reached-end {
  background: radial-gradient(circle, rgb(255, 33, 33) 0%, rgb(254, 120, 4) 36%, rgb(196, 245, 255) 100%);
}

.info-line {
  width: 90vw;
  text-align: center;
  font-size: 3vw;
  padding: 5vw;
  display: flex;
  justify-content: center;
}
.info-line .player-turn {
  flex: 0 0 50%;
}
.info-line .emptyness {
  flex: 0 0 20%;
}
.info-line .end-turn {
  flex: 0 0 30%;
}
