body {
  background-color: #090A0F;
  /* background-image: radial-gradient(ellipse at bottom, #1B2735 0%, #090A0F 100%); */
  overflow: hidden;
  font-family: sans-serif;
  height: 100vh;
  margin: 0;
  color: #fff;
}

.stars {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.star {
  position: absolute;
  background: #ffffff;
  border-radius: 50%;
  animation:
    twinkle 5s infinite,
    drift 8s infinite ease-in-out;
  opacity: 1;
}

.star:nth-child(1n) {
  width: 1px;
  height: 1px;
  animation-delay: 0s;
}

.star:nth-child(2n) {
  width: 2px;
  height: 2px;
  animation-delay: 1s;
}

.star:nth-child(3n) {
  width: 3px;
  height: 3px;
  animation-delay: 2s;
}

@keyframes twinkle {
  0% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.2;
    transform: scale(0.5);
  }

  100% {
    opacity:r 1;
    transform: scale(1);
  }
}

@keyframes drift {
  0% {
    transform: translate(0, 0);
  }

  25% {
    transform: translate(calc(var(--drift-x) * 5px), calc(var(--drift-y) * 5px));
  }

  50% {
    transform: translate(calc(var(--drift-x) * -3px), calc(var(--drift-y) * -3px));
  }

  75% {
    transform: translate(calc(var(--drift-x) * 2px), calc(var(--drift-y) * 2px));
  }

  100% {
    transform: translate(0, 0);
  }
}

.logo {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

.logo>.wrapper {
  padding: 2em;
  width: 16em;
  position: relative;
  margin: 0 auto;
}