@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&display=swap');
body {
  background: #000;
  color: #fff;
  margin: 0;
}

* {
  font-family: 'Figtree', sans-serif;
}

nav {
  text-align: center;
  left: 0;
  top: 0;
  margin: 0;
  width: 100vw;
}
.nav-content {
  padding: 1em;
}
nav a {
  color: inherit;
  text-decoration: none;
  transition: 0.3s;
  background: rgba(112, 126, 158, 0.144);
  border-radius: 1em;
  padding: 1em 3em;
}

.home-content {
  position: absolute;
  top: 42%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.home-content h1 {
  font-size: 8em;
  line-height: 0;
}

#uv-address {
  background: transparent;
  padding: 1em;
  outline: none;
  border: solid 3px rgba(112, 126, 158, 0.144);
  border-radius: 1em;
  color: #fff;
  width: 35vw;
  font-size: 1.05em;
  margin-bottom: 1em;
  margin-top: 1em;
}
nav a:hover {
  font-size: 1.5em;
}

#particles-js {
  position: absolute;
  width: 100%;
  height: 99%;
  top: 0;
  left: 0;
  z-index: -1;
}

.animate-character
{
   text-transform: uppercase;
  background-image: linear-gradient(
    -225deg,
    #8684f0 0%,
    #eea318 50%,
    #ff1361 100%
  );
  background-size: auto auto;
  background-clip: border-box;
  background-size: 200% auto;
  color: #fff;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textclip 2s linear infinite;
  display: inline-block;
      font-size: 10em;
}

@keyframes textclip {
  to {
    background-position: 200% center;
  }
}

.home-other-stuff {
  transform: translateY(-10em);
}

.sidenav {
  display: flex;
  flex-direction: row;
}
.sidenav a, .sidenav h3 {
  margin-right: 0.5em;
}