@import url('https://fonts.googleapis.com/css2?family=Shadows+Into+Light&display=swap');
html {
  box-sizing: border-box;
  font-size: 10px;
  
background-color: #f3e6e8;
background-image: linear-gradient(315deg, #f3e6e8 0%, #d5d0e5 74%);

}

*, *:before, *:after {
  box-sizing: inherit;
}

@font-face {
  font-family: fryventure;
  src: url(../fonts/Fry-Regular.ttf);
}
body {
  padding: 0;
  margin: 0;
  font-family: 'fryventure', cursive;
  cursor: none;
  background-position: center;
  background-image: url(../img/brickwall.png);
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
}

.parent {
display: grid;
grid-template-columns: 100%;
grid-template-rows: 30% 10% 40%;
grid-column-gap: 0px;
grid-row-gap: 0px;
}

.div1 { grid-area: 1 / 1 / 2 / 2; }
.div2 { 
  grid-area: 2 / 1 / 3 / 2; 
}
.div2:hover {
  cursor: none;
}
.div3 { grid-area: 3 / 1 / 4 / 2; }

.start{
  text-align: center;
}

h1 {
  text-align: center;
  font-size: 5rem;
  margin-bottom: 0;
  font-family: fryventure;
}

.score {
  color: rgb(104, 94, 114);
  margin-top: 0%;

 }

.game {
  width: 800px;
  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(../img/grass.png) bottom center no-repeat;
  background-size: contain;
  content: '';
  width: 100%;
  height: 140px;
  position: absolute;
  z-index: 2;
  bottom: -75px;
}

.mole {
  background: url('../img/Ur_mom.png') bottom center no-repeat;
  background-size: 50%;
  position: absolute;
  top: 100%;
  width: 100%;
  height: 100%;
  transition:all 0.4s ease;
}

.hole.up .mole {
  top: 0;
}

button{
  background: rgba(190, 19, 19, 0.2);
  border: red;
  font-size: 3rem;
  cursor: pointer;
  font-family: fryventure;
  font-weight: bold;
}

.hoofd{
  align-items: center;
  display: block;
  margin-left: 10%;
  margin-right: 0%;
  width: 50%;
}

.cursor {
  position: fixed;
  width: 80px;
  height: 80px;
  background-image: url('../img/hand.png');
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 9999;
}

