@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@800&family=Bebas+Neue&family=DM+Sans:wght@700&display=swap');
html, body{
  font-family: 'Bebas Neue', sans-serif;
  color: black;
  /* text-shadow: 1px 1px 10px black; */
}
  /* CSS voor de menu balk */
.menu{
  position: absolute;
  width: 20%;
  height: auto;
  bottom: 3%;
  left: 3%;
}
  /* CSS voor de buttons */
.moveButtons{
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  padding: 10px;
  background: rgba(255, 255, 255, .5)
}
.arrow-button {
  background-color: white;
  border: none;
  color: black;
  padding: 12px 24px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 20px;
  cursor: pointer;
  position: relative;
  filter: drop-shadow(0 0 8px #a0a0a0);
  font-family: 'Bebas Neue', sans-serif;
}
.arrow-button:disabled {
  background-color: grey;
  border: none;
  color: black;
  padding: 12px 24px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 20px;
  cursor: pointer;
  position: relative;
  filter: drop-shadow(0 0 8px #a0a0a0);
  font-family: 'Bebas Neue', sans-serif;
}
.arrow-button:before {
  content: "";
  position: absolute;
  top: 50%;
  margin-top: -12px;
  border-width: 12px 0 12px 16px;
  border-style: solid;
  border-color: transparent transparent transparent #ffffff;
}
.left-arrow:before {
  z-index: 4;
  left: -16px;
  border-width: 12px 16px 12px 0;
  border-color: transparent #ffffff transparent transparent;
}
.right-arrow:before {
  right: -16px;
  border-width: 12px 0 12px 16px;
  border-color: transparent transparent transparent #ffffff;
}
.right-arrow {
  margin-left: 10px;
}
  /* CSS voor de geld counter */
#center {
  transform-style: preserve-3d;
  position: fixed;
  bottom: 53px;
  right: 10%;
  text-align: center;
}
#geld {
  position:absolute;
  transform-style: preserve-3d;
  font-size:30px;
}
#tag {
  transform-style: preserve-3d;
  display: none;
  position:absolute;
  top: -55px;
  left:50%;
  transform: translateX(-50%);
  font-size:20px;
  line-height: 50px;
}
#title{
  transform-style: preserve-3d;
  position:absolute;
  padding-right: 90%;
  transform: translateX(-60px);
  font-size:30px;
}
