body {
  font-family: Arial, sans-serif;
  text-align: center;
  background-color: #56DFCF;
  margin: 0;
  padding: 20px;
}

h1 {
  margin-bottom: 20px;
}

.board {
  display: grid;
  grid-template-columns: repeat(5, 60px);
  grid-gap: 10px;
  justify-content: center;
  margin-bottom: 20px;
}

.box {
  width: 60px;
  height: 60px;
  border: 2px solid #333;
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  position: relative;
  background-color: #F2F2F2;
  font-size: 12px;
  line-height: 1.1;
  flex-direction: column;
}

.box.ladder {
  background-color: #7af17a;
  border-color: green;
}

.box.snake {
  background-color: #e57676;
  border-color: red;
}

.token {
  position: absolute;
  font-size: 14px;
  padding: 2px 5px;
  border-radius: 4px;
  color: #fff;
}

.p1 {
  background-color: red;
  top: 2px;
  left: 2px;
}

.p2 {
  background-color: blue;
  bottom: 2px;
  right: 2px;
}

.controls {
  margin-top: 10px;
}

button {
  padding: 10px 20px;
  font-size: 16px;
  margin: 5px;
  cursor: pointer;
  border-radius: 1rem;
  background-color: #725CAD;
}

#winnerMsg {
  font-size: 40px;
  font-weight: bold;
  color: green;
  margin-top: 10px;
}
p{
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin-top: 10px;
}