.container {
  width: 100%;
  height: 100%;
  height: 100%;
  overflow: auto !important;
  padding-top: 10%;
}

h1 {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: bold;
  font-size: 40px;
  letter-spacing: 15px;
  text-transform: uppercase;
  text-align: center;
  color: rgb(241,241,241);
  margin: 0px;
  padding: 5px;
}

p {
  font-family: "Source Sans Pro", sans-serif;
  position: fixed;
  top: -250px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 7.5px;
  text-transform: uppercase;
  text-align: center;
  color: rgb(241,241,241);
  padding-left: auto;
  margin: 0px;
}

p a {
  color: rgb(241,241,241);
  text-decoration: none;
  margin: 0;
  padding: 0;
}

p a:hover {
  color: #808080;
  text-decoration: none;

}

.text {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%) !important;
  -ms-transform: translateY(-50%) !important;
  transform: translateY(-50%) !important;
  z-index: 3;
  display: block;
}

/* ---- reset ---- */

body {
  margin: 0;
}

canvas {
  display: block;
}

/* ---- particles.js container ---- */

#particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgb(5, 59, 0);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
}

/* -- Button -- */

* {
  box-sizing: border-box;
  margin: 0; padding: 0;
}


:active, :hover, :focus {
  outline: 0!important;
  outline-offset: 0;
}
::before,
::after {
  position: absolute;
  content: "";
}

.btn-holder {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 100%;
  margin: auto auto auto;
}
.btn {
  position: relative;
  display: inline-block;
  width: auto; height: auto;
  background-color: transparent;
  border: none;
  cursor: pointer;
  margin: 0px 25px 15px;
  min-width: 150px;
}
  .btn span {         
    position: relative;
    display: inline-block;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
    top: 0; left: 0;
    width: 100%;
    padding: 15px 20px;
    transition: 0.3s;
  }

/*--- btn-1 ---*/
.btn-1::before {
  background-color: rgba(255, 255, 255, 0);
  transition: 0.3s ease-out;
}
.btn-1 span {
  color: rgb(255, 255, 255);
  border: 1px solid rgb(0, 202, 44, 0.7);
  transition: 0.2s 0.1s;
}
.btn-1 span:hover {
  color: rgb(255, 255, 255);
  border: 1px solid rgb(255, 255, 255);
  background-color: rgba(0, 202, 44, 0.4);
  transition: 0.2s 0.1s;
}

/* 5. hover-filled-opacity */
.btn.hover-filled-opacity::before {
  top:0; bottom: 0; right: 0;
  height: 100%; width: 100%;
  opacity: 1;
}
.btn.hover-filled-opacity:hover::before {
  opacity: 0;
}
