@import url("https://fonts.googleapis.com/css2?family=Source+Sans+Pro:ital,wght@0,400;0,700;1,200&display=swap");

html {
  margin: 0;
  font-family: "Source Sans Pro", sans-serif;
  background: radial-gradient(ellipse at bottom, #1b2735 0%, #090a0f 100%);
  color: #fff;
  width: 100%;
}

body {
  width: 100vw;
  height: 100vh;
  margin: 0;
  padding: 0;
}

.stars {
  content: "";
  /* position: fixed; */
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  z-index: -11;
}

.star {
  border-radius: 50%;
  display: block;
  position: absolute;
  -webkit-animation: glow 15000ms linear infinite;
  animation: glow 15000ms linear infinite;
}




.main {
  margin: 0 auto;
  display: flexbox;
  /* padding-top: 35vh; */
  text-transform: uppercase;
  /* max-width: 55vh; */
}

@-webkit-keyframes glow {
  0% {
    opacity: 0.4;
    -webkit-transform: scale(0.2);
    transform: scale(0.5);
  }
  50% {
    opacity: 0.9;
    -webkit-transform: scale(1);
    transform: scale(0.9);
  }
  100% {
    opacity: 0.4;
    -webkit-transform: scale(0.2);
    transform: scale(0.4);
  }
}

@keyframes glow {
  0% {
    opacity: 0.4;
    -webkit-transform: scale(0.2);
    transform: scale(0.2);
  }
  50% {
    opacity: 0.9;
    -webkit-transform: scale(1);
    transform: scale(0.9);
  }
  100% {
    opacity: 0.4;
    -webkit-transform: scale(0.2);
    transform: scale(0.2);
  }
}
