html {
    font-family: "Courier New", Courier, monospace;
}

h1 {
    font-family: inherit;
    font-weight: normal;
}

#difficulty-display {
    position: fixed;
    top: 10px;
    right: 10px;
    color: inherit;
    font-size: 1.5rem;
    padding: 4px 6px;
}

body {
    background-color: #000000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    color: #006f29;
    font-family: inherit;
    cursor: url("img/hammer-cursor.png") 0 0, auto;
}

button,
input,
select,
textarea {
    font-family: inherit;
    cursor: url("img/hammer-cursor.png") 0 0, auto;
}

.game-area {
    display: grid;
    width: 300px;
    height: 300px;
    border: 2px solid #000000;
    outline: #006f29 solid 2px;
    border-radius: 5px;
    overflow: hidden;
    gap: 2px;
    grid-template-columns: repeat(3, 1fr);
}

.hole {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #21ae61;
    height: 100%;
    width: 100%;
    padding: 5px;
    box-sizing: border-box;
    cursor: url("img/hammer-cursor.png") 0 0, auto;
}

.Mole {
    background-image: url("img/mole.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.rareMole {
    background-image: url("img/rare-mole.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

#score {
    font-size: 2rem;
    margin: 20px 0;
}

#highscore {
    font-size: 1.3rem;
    margin-top: -10px;
    margin-bottom: 20px;
}

#countdown {
    margin-top: -10px;
    margin-bottom: 20px;
}

#game-over {
    display: none;
    margin-top: 15px;
    margin-bottom: 5px;
    text-align: center;
}

#stop-btn{
    display: none;
}


.startBtn{
  margin-top: 15px;
}

.startgame {
    width: 220px;
    height: 50px;
    font-size: 18px;
    border: 2px solid #000000;
    outline: 2px solid #006f29;
    color: #006f29;
    background: #21ae61;
    cursor: pointer;
    position: relative;
    z-index: 0;
    border-radius: 100px;
}

