* {
  margin: 0;
  padding: 0;
}

html,
body {
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
}

.webgl {
  position: fixed;
  top: 0;
  left: 0;
  outline: none;
}

.overlay {
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  background-color: black;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loading-bar {
  position: absolute;
  top: 50%;
  width: 100%;
  height: 2px;
  background-color: white;
  transform: scaleX(0);
  transform-origin: top left;
  transition: transform 0.5s;
  will-change: transform;
}
.loading-bar.ended {
  transform-origin: top right;
  transition: transform 1.5s ease-in-out;
}

.heading {
  color: white;
  font-size: 4rem;
  text-align: center;
  margin-bottom: 6%;
}
.sound {
  right: 5%;
  bottom: 5%;
  color: white;
  font-size: 14px;
  position: absolute;
}


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