body, html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
#canvasContainer {
  width: 100%;
  height: 100%;
  position: absolute;
}
canvas {
  display: block;
  z-index: 1;
}

#svgContainer {
  width: 100%;
  height: 100%;
  border: 1px solid black;
  position: absolute;
  animation: fadeInAnimation ease 2s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  z-index: 0;
  pointer-events: none;
}
svg {
  width: 80%;
  height: 80%;
  left: 10%;
  top: 10%;
}

#about-us {
  width: 15%;
  height: 15%;
  right: 5%;
  top: 5%;
  position: absolute;
  pointer-events: none;
}

@keyframes fadeInAnimation {
  0% {
      opacity: 0;
  }

  100% {
      opacity: 1;
  }
}