body {
  margin: 0;
  padding: 0;
  height: 100vh; /* Use viewport height */
  background: linear-gradient(180deg, hsla(0, 0%, 0%, 1) 0%, hsla(250, 98%, 66%, 1) 100%);
}

.loader {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40vh;
}

.dot {
  width: 10px;
  height: 10px;
  background-color: #BC93FF;
  margin: 0 5px;
  animation: blink 1.5s infinite;
}

.dot:nth-child(2) {
  animation-delay: 0.5s;
}

.dot:nth-child(3) {
  animation-delay: 1s;
}

@keyframes blink {

  0%,
  100% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }
}

.text-load {
  color: #BC93FF;
  font-family: Digitalt;
  font-size: 2.5vh;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.3vw;
}

.logo {
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: end;
  height: 40vh;
}

.logo::before {
  content: "";
  position: absolute;
  width: 201px;
  height: 72px;
  background-color: #D96DFF;
  border-radius: 50%;
  z-index: -1; /* Place the ellipse behind the logo */
  top: 23%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(20px);
}