body {
  font-family: "Lato";
  padding: 0;
  margin: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgb(204, 204, 204);
  overflow: hidden;
}

.wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.canvas {
  border: none;
  filter: drop-shadow(5px 5px 5px rgba(0, 0, 0, 0.4));
  margin-right: 150px;
}

.info {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  justify-content: center;
}

.winner {
  font-size: 50px;
  top: 20%;
  position: absolute;
  color: rgb(145, 83, 83);
}

.btn-restart {
  width: 100px;
  height: 50px;
  background: transparent;
  border: 2px solid black;
  border-radius: 5px;
  margin-bottom: 30px;
}

.btn-restart:hover {
  background-color: rgb(43, 39, 39);
  color: aliceblue;
  transition: 0.5s;
}

.next-move {
  font-size: 20px;
}
