body {
      font-family: Arial, sans-serif;
      text-align: center;
      background: #f7f7f7;
    }

    h1 {
      margin-top: 20px;
    }

    #game {
      display: grid;
      grid-template-columns: repeat(3, 100px);
      grid-gap: 15px;
      justify-content: center;
      margin-top: 20px;
    }

    .hole {
      width: 100px;
      height: 100px;
      background: #6ab04c;
      border-radius: 10px;
      position: relative;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
    }

    .mole {
      width: 60px;
      height: 60px;
      /* background: brown;
      border-radius: 50%; */
      position: absolute;
      bottom: 0;
      left: 20px;
      display: none;
      font-size: 50px;
      background-size: cover;
    }

    #score, #time, #hscore {
      margin: 15px;
      font-size: 20px;
    }

    button {
      margin-top: 20px;
      padding: 10px 20px;
      font-size: 16px;
      cursor: pointer;
      border: none;
      border-radius: 8px;
      background: #0984e3;
      color: white;
    }

    button:hover {
      background: #0652DD;
    }