html {
  box-sizing: border-box;
  font-size: 10px;
  background: linear-gradient(#cceeff, #99ccff);
}

*, *:before, *:after {
  box-sizing: inherit;
}

body {
  padding: 0;
  margin: 0;
  font-family: 'Comic Neue', cursive; /* Add new Google Font */
}

h1 {
  text-align: center;
  font-size: 10rem;
  line-height: 1;
  margin-bottom: 0;
}

.score {
  background: rgba(255, 255, 255, 0.4);
  padding: 0 3rem;
  line-height: 1;
  border-radius: 1rem;
}

.game {
  width: 600px;
  height: 400px;
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
}

.hole {
  flex: 1 0 33.33%;
  overflow: hidden;
  position: relative;
}

.hole:after {
  display: block;
  background: url(grass.svg) bottom center no-repeat;
  background-size: contain;
  content: '';
  width: 100%;
  height: 150px;
  position: absolute;
  z-index: 2;
  bottom: -35px;
  pointer-events: none;
}

.mole {
  background: url('bunny.svg') bottom center no-repeat;
  background-size: contain;
  position: absolute;
  top: 100%;
  width: 100%;
  height: 100%;
  transition:all 0.4s;
  pointer-events: auto;
}

.hole.up .mole {
  top: -10%;
}
