html, body {
  background: #222222;
}

body {
  margin: 0;
}

section {
  height: 100vh;
}

#modularity {
  height: 250vh;
  position: relative;
}
#modularity .webgl-container {
  position: sticky;
  top: 0;
  height: 100vh;
  background-image: url("../images/Hintergrund.jpg");
  background-repeat: no-repeat;
  background-size: 150%;
  background-position: center center;
}
#modularity .webgl-container .bg-video {
  position: absolute;
  z-index: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
#modularity .webgl-container .bg-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#modularity .webgl-container #loading-screen {
  position: absolute;
  background-image: url("../images/Hintergrund.jpg");
  background-repeat: no-repeat;
  background-size: 150%;
  background-position: center center;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: opacity 1s;
}
#modularity .webgl-container #loading-screen svg {
  margin-bottom: 25px;
}
#modularity .webgl-container #loading-screen svg text {
  font-family: sans-serif;
  font-size: 120px;
  stroke: white;
  stroke-width: 3;
  fill: rgba(255, 255, 255, 0);
  stroke-dashoffset: 100%;
  stroke-dasharray: 100%;
}
#modularity .webgl-container #loading-screen h3 {
  font-size: 28px;
  color: white;
  opacity: 0;
}
#modularity .webgl-container #loading-screen.active {
  z-index: 1;
  opacity: 1;
}
#modularity .webgl-container #loading-screen.active svg text {
  animation: loading 10s forwards;
}
#modularity .webgl-container #loading-screen.active h3 {
  opacity: 1;
  transition: opacity 7.5s 1s;
}
#modularity .webgl-container #webgl-bg-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#modularity .webgl-container #webgl-bg-wrapper canvas {
  width: 100%;
  height: 100%;
}
#modularity .webgl-container canvas#webgl-canvas {
  position: relative;
  width: 100%;
  height: 100%;
  cursor: grab;
  cursor: -webkit-grab;
}
#modularity .webgl-container .infotext {
  position: absolute;
  bottom: 100px;
  left: 60%;
}
#modularity .webgl-container .infotext .text-box {
  color: white;
  display: none;
}

.progress-bar {
  position: relative;
  width: 100%;
  height: 4px;
  max-width: 600px;
  background-color: white;
}
.progress-bar .progress {
  position: absolute;
  left: 0;
  top: 0;
  height: 4px;
  background-color: #0050A0;
}

@keyframes loading {
  100% {
    stroke-dashoffset: 0;
    fill: white;
  }
}

/*# sourceMappingURL=styles.css.map */
