#particles-js{
 height: 100vh;
 width: 100vw;
 background-color: #0a1612;
 font-size: 0;
 position: fixed;
z-index: -1;
}
.content{
 position: absolute;
 top: 50%;
 left: 50%;
 transform: translateX(-50%);
 text-align: center;
}


.content-text {
  width: 9ch;
  animation: typingdemo 2s steps(9), blinking .5s step-end infinite alternate;
  white-space: nowrap;
  overflow: hidden;
  border-right: 3px solid;
  font-family: monospace;
  font-size: 5em;
  color: #fff;
  font-weight: bold;
  margin: 0 auto;
}

.content-button {
  display: inline-block;
  padding: 1em 1em;
  margin: 2em 0;
  /* background: #fff; */
  border: solid 3px #fff;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  font-size: 13px;
  /* font-size: 1.5em; */
  min-width: 300px;

}

.content-button:hover {
  background: #fff;
  color: #000;
}

/* .content-button a,
.content-button a:visited {
  color: #fff;
  text-decoration: none;
} */

.content-sub-text {
  color:#fff;
  font-size:10px;
}

@keyframes typingdemo {
  from {
    width: 0
  }
}
    
@keyframes blinking {
  50% {
    border-color: transparent
  }
}




.nav {
  color:#fff;
  position:absolute;
  padding: 1em;
  box-sizing: border-box;
  min-width: 320px;
  top:0;

}

.nav ul {
  /* list-style:none; */
  padding-left: 1em;

}

.nav li {
  margin: .5em 0;
  font-size: 12px;
}

/* .nav li a::before {
  content:"-";
  display: inline-block;
  margin-right: .5em;
} */

.nav-title {
  /* font-size: 1em; */
  /* border-bottom: solid 1px;
  border-top: solid 1px; */
  margin: .5em 0;
}

.nav a {
  color:#fff;
  line-height: 1.5;
}

.nav a:visited {
  color:#fff;
}



.content-description {
  padding: 2em;
}





/* General Styles for Hamburger Menu */
.hamburger-menu {
  display: none;
  cursor: pointer;
  width: 30px;
  height: 25px;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  top: 1em;
  left: 1em;
  z-index: 9999;
}

.line {
  width: 100%;
  height: 3px;
  background-color: #fff;
}

/* Styles for .nav */
.nav {
  color: #fff;
  position: absolute;
  padding: 1em;
  box-sizing: border-box;
  list-style: none;
  top: 0;
  left: 0;
  width: auto;

  transition: transform 0.3s ease;
  background:#111;
  opacity: 0.9;
  height: 100%;
  list-style: none;
  

}

.nav.active {
  transform: translateY(0);
  padding-top: 60px;
  z-index: 999;


}

.nav a {
  color: #fff;
  line-height: 1.5;
  /* display: block; */
  text-decoration: none;
}

.nav a:visited {
  color: #fff;
}


.nav .copyright {
  margin-top: 2em;
  padding: 1em;
  font-size: 14px;
  text-align: center;

}

.nav .copyright a {
  display: inline;
  text-decoration: underline;

}

/* Media Query for Mobile Devices */


@media (max-width: 1200px) {
  .hamburger-menu {
      display: flex;
  }

  .nav {
      position: fixed;

      top: 0;
      left: 0;
      width: 100%;
      transform: translateY(-100%);

  }







}



a,
a:visited {
  color:#fff;
}


body {
  margin: 0;
  padding: 0;
  /* font-size: 0; */
}

ul {
  margin: 0;
  padding: 0;
}

