html {
  height: 100%;
  background: radial-gradient(ellipse at bottom, #000000 0%, #000000 100%);
  overflow: hidden;
  background-color: #000000;
  color: #000000;
}

body {
  background-color: #000000;
  color: #000000;
  background: #000000;
}

.wrapper {
  position: absolute;
  left: 50%;
  top: 48%;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
}

#title {
  font-size: 48px;
}

#title,
#desc {
  color: #fff;
  font-family: 'Poppins', sans-serif;
}

.particletext {
  position: relative;
  color: transparent;
  font-weight: 800;
  background-color: #c8e8ed !important;
  background-position: 50% 50%;
  background: url(https://i.imgur.com/OLQtRxV.png) repeat-y;
  -webkit-background-clip: text;
  animation: slide 2s linear infinite;
}

body {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 55px;
  font-weight: 400;
  color: #212112;
  background-image: url('https://s3-us-west-2.amazonaws.com/s.cdpn.io/1462889/pat-back.svg');
  background-position: center;
  background-repeat: repeat;
  background-size: 7%;
  background-color: #fff;
  overflow-x: hidden;
  transition: all 200ms linear;
}

.test {
  color: rgb(255, 255, 255);
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 48px;
  font-weight: 700;
  height: 65px;
  line-height: 55px;
  margin-block-end: 32.16px;
  margin-block-start: 32.16px;
  margin-inline-end: 0px;
  margin-inline-start: 0px;
  width: 364.859375px;
}

.nav-link {
  color: #c8e8ed !important;
  /* font-weight: bold; */
  transition: all 200ms linear;
  margin-right: -12px;
  position: relative;
  padding: 5px 0 !important;
  display: inline-block;
}

.nav-item {
  position: relative;
  transition: all 200ms linear;
}

.nav-item:hover .nav-link {
  color: #c8e8ed !important;
  font-weight: 600;
  /* transition: all 200ms linear; */
}

.nav-item.active .nav-link {
  color: #c8e8ed !important;
  font-weight: 600;
  /* transition: all 200ms linear; */
}

.nav-item:after {
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 4px;
  content: '';
  background-color: #c8e8ed;
  opacity: 0;
  transition: all 200ms linear;
}

.nav-item:hover:after {
  bottom: 0;
  opacity: 1;
}

.nav-item.active:hover:after {
  opacity: 0;
}

@keyframes slide {
  0% {
    background-position: 50% 50%;
  }

  100% {
    background-position: 60% 100%;
  }
}