body {
  font-family: Arial, sans-serif;
  text-align: center;
  margin-top: 50px;
}

#game {
  display: grid;
  grid-template-columns: repeat(3, 100px);
  grid-gap: 10px;
  justify-content: center;
}

.hole {
  width: 100px;
  height: 100px;
  background-color: #ccc;
  position: relative;
}

.mole {
  width: 80px;
  height: 80px;
  background-color: brown;
  border-radius: 50%;
  position: absolute;
  top: 10px;
  left: 10px;
  display: none;
}

p {
  font-size: 18px;
}