body {
  background-color: rebeccapurple;
}
h1 {
  text-align: center;
  color: #ebeff2;
  font-size: 1vw;
  letter-spacing: 0.7vw;
  margin-top: 100vh;
  position: absolute;
  font-family: 'Jost', sans-serif;
  transition: letter-spacing 10s ease-in-out;
}
p {
  font-family: sans-serif;
  font-size: 20px;
}
.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}
div#main {
  display: flex;
  align-items: center;
  justify-content: center;
  /* height: 100vh; */
}
.fade-in {
  opacity: 0;
  animation: fadeIn 1s ease-in-out forwards;
}
.fade-in:nth-child(1) {
  animation-delay: 0.5s;
}
.fade-in:nth-child(2) {
  animation-delay: 1.5s;
}
.fade-in:nth-child(3) {
  animation-delay: 2.5s;
}
.fade-in:nth-child(4) {
  animation-delay: 3.5s;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fade-in a {
  color: #d9ad5b;
  transition: color 1s;
}
.fade-in a:hover {
  color: #ebeff2;
}
.fa-brands, .fab {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
  cursor: cell;
}
/* ---- reset ---- */ body {
  margin: 0;
  font: normal 75% Arial, Helvetica, sans-serif;
}
canvas {
  display: block;
  vertical-align: bottom;
} /* ---- particles.js container ---- */ #particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, #0d0d0d 0%, black 100%);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
} /* ---- stats.js ---- */ .count-particles {
  background: #000022;
  position: absolute;
  top: 48px;
  left: 0;
  width: 80px;
  color: #13E8E9;
  font-size: .8em;
  text-align: left;
  text-indent: 4px;
  line-height: 14px;
  padding-bottom: 2px;
  font-family: Helvetica, Arial, sans-serif;
  font-weight: bold;
}
.js-count-particles {
  font-size: 1.1em;
}
#stats, .count-particles {
  -webkit-user-select: none;
  margin-top: 5px;
  margin-left: 5px;
}
#stats {
  border-radius: 3px 3px 0 0;
  overflow: hidden;
}
.count-particles {
  border-radius: 0 0 3px 3px;
}