*{
  scrollbar-width: none;
}
 
::-webkit-scrollbar { /* scrollbar, zeik */
  display: none;
}

body{
  image-rendering: pixelated;
  cursor: url("mous.png"), default;
  overflow: hidden;
  margin: 0;
  padding: 0;
  min-height: 100vh; /*houden zo, voor cursor !! */
}

a:hover, .hoverable {
  cursor: url("mous2.png"), pointer;
}

h1{
  font-weight: normal;
}

#backbutton img{
  width: 64px;
  height: 64px;
}

#backbutton{
  position: fixed;
  top: 0;
  margin: 1em;
  z-index: 99;
}

#container{
  position: absolute;
  width: 1280px;
  height: 900px;
  top: 50%;
  left: 50%;
  transform: translate(-50% , -50%);
  /*border: 1px red solid;*/
  overflow-y: visible;
}

@media only screen and (max-width: 700px) {
  #backbutton{
    display: none;
  }
}