.score {
    background-color: black;
    color: white;
    padding: 10px;
    font-size: 1.5em;
}

.button {
    padding: 20px;
    font-size: 1.2em;
    background-color: #ff3535;
    color: white;
}

.message{
    font-size:1em;
    padding:20px;
}

.game {
    width: 1000px;
    margin: 0 auto;
}

.hole {
    display: inline-block;
    margin: 10px;
    width: 20%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.dirt {
    background-image: url(../images/ground.png);
    background-size: cover;
    z-index: 10;
    position: absolute;
    height: 50px;
    bottom: 0;
    left: 0;
    width: 100%;
}

.mole {
    background-image: url(../images/animal.png);
    /*background-size: cover;*/
    z-index: 3;
    position: absolute;
    height: 250px;
    top: 250px;
    left: 0;
    width: 100%;
    cursor: crosshair;
}

.whack {
    max-width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    display: none;
}