/**@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");**/
@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200;0,6..12,300;0,6..12,400;0,6..12,500;0,6..12,600;0,6..12,700;0,6..12,800;0,6..12,900;0,6..12,1000;1,6..12,200;1,6..12,300;1,6..12,400;1,6..12,500;1,6..12,600;1,6..12,700;1,6..12,800;1,6..12,900;1,6..12,1000&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: "Nunito Sans";
  font-size: 16px;
}

body {
  background-color: #000;
  background-image: url("glow.png");
  background-size: cover;
  background-position: center;
  color: #fff;
}

body p {
  opacity: 0.7;
}

main {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 0 30px;
}

footer {
  position: fixed;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100px;
  opacity: 0.5;
}

h1 {
  margin-bottom: 20px;
  font-size: 48px;
  text-align: center;
}

span.colored {
  background: -webkit-linear-gradient(#b75cff, #778bff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

a {
  color: white;
  text-underline-offset: 2px;
}

a:hover {
  color: #d4a0ff;
}
@media screen and (max-width: 400px) {
  h1 {
    font-size: 36px;
  }
}
