@font-face {
  font-family: nunito;
  src: url("./static/NunitoSans_7pt-Black.ttf");
}

body {
  margin: 0;
  padding: 0;
  font-family: nunito;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
  color: #fff;
  background: #000;
}

h1 {
  font-size: 30px;
  font-weight: 700;
  color: #fcfcfc;
  margin-top: 2rem;
}

.outer-div {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(
    rgba(1, 2, 3, 1),
    rgba(3, 20, 36, 1),
    rgba(0, 0, 0, 1)
  );
  display: flex;
  justify-content: center;
  align-items: center;
}

.bg-image {
  background-image: url("./bg_stars.png");
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.inner-div {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 764px;
  border-radius: 20px;
  border: 1px solid rgba(0, 175, 250, 1);
  padding: 24px;
  flex-direction: column;
  z-index: 100;
  /* gap: -10px; */
  color: #d2d2d2;
  font-size: 16px;
  font-weight: 600;
  line-height: 27px;
  text-align: center;
  background: linear-gradient(
    284.42deg,
    rgba(0, 175, 250, 0.2) -49.92%,
    rgba(50, 162, 186, 0.2) 54.24%,
    rgba(36, 255, 202, 0.2) 169.83%
  );
}

.link {
  color: #fcfcfc;
  text-underline-offset: 2px;
}

footer {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  /* margin-bottom: 1rem; */
}
.dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #fcfcfc;
}

.about {
  font-size: 14px;
  color: #fcfcfc;
}
