@font-face {
  font-family: baby;
  src: url(/fonts/baby.ttf);
}
body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: chocolate;
  font-family: baby;
}

.game-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 20px;
}

#score {
  font-size: 30px;
}

#startButton {
  margin-bottom: 20px;
  padding: 10px;
  font-size: 16px;
  cursor: pointer;
}

#endButton {
  margin-bottom: 20px;
  padding: 10px;
  font-size: 16px;
  cursor: pointer;
}

.game-container {
  background-color: rgb(2, 48, 32);
  display: grid;
  grid-template-columns: repeat(3, 160px);
  gap: 5px;
  border: 2px solid rgb(216, 216, 216);
  padding: 20px;
  border-radius: 10px;
}

.hole {
  height: 150px;
  background: rgb(219, 144, 78);
  border: 5px solid rgb(30, 30, 30);
  cursor: pointer;
  border-radius: 100px;
}

.mole {
  background-size: 150px;
  background-image: url("mole.png");
}

@media only screen and (max-width: 600px) {
  .game-container {
    width: 80%;
    gap: 5px;
    padding: 5%;
    grid-template-columns: repeat(3, 38%);
  }

  .hole {
    height: 50px;
    width: 50px;
    border-radius: 100px;
  }

  .mole {
    background-size: 50px;
    background-image: url("mole.png");
  }
}
p,
div {
  color: white;
  font-size: 20px;

  text-align: center;
}
button {
  background-color: rgb(23, 119, 148);
  color: white;
  outline: none;
  border: none;
  border-radius: 5px;
}
