body {
  overflow-y: hidden;
  overflow-x: hidden;
}

html {
  overflow-x: hidden;
}

.blur-overlay {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  pointer-events: none;
  backdrop-filter: blur(200px);
  z-index: 1;
  will-change: filter;
}

.starContainer {
  position: absolute;
  height: 100vh;
  width: 100vw;
  pointer-events: none;
}

.star {
  background-color: rgb(0, 149, 149);
  height: 500px;
  width: 500px;
  position: absolute;
  border-radius: 50%;
  transition: 1s ease;
  opacity: 0.6;
}


@supports (-moz-appearance: none) {
  .starContainer {
    opacity: 0.8;
  }
}