html, body {
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', sans-serif;
    width: 100vW;
    min-height: 100vH;
    overflow: auto;
}

#hero {
    height: 100vh;
    width: 100vW;
    display: flex;
}


#hero-bg {
  position: absolute;
  width: 100vW;
  height: 100vh; /* oder eine andere gewünschte Höhe */
  overflow: hidden;
  background-color: white;    
  z-index: 0;
  margin-top: -30px;
}

#pixelCanvas {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
