@import url('https://fonts.googleapis.com/css?family=Allura|Josefin+Sans');

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

body {
  background: #101212;
  font-size: 20px;
  font-family: 'Josefin Sans', sans-serif;
}

.wrapper {
  margin-top: 5%;
}

.wrapper h1 {
  font-family: 'Arial', cursive;
  font-size: 52px;
  color: #fffefe;
  margin-bottom: 8px;
  text-align: center;
}

.team {
  display: flex;
  justify-content: center;
  width: relative;
  text-align: center;
  flex-wrap: wrap;
}

.team .team_member {
  background: rgb(59, 59, 59);
  margin: 20px;
  margin-bottom: 50px;
  width: 300px;
  padding: 20px;
  line-height: 20px;
  color: #8e8b8b;
  position: relative;
}

.team .team_member h3 {
  color: #fdfdfd;
  font-size: 40px;
  margin-top: 150px;
}

.team .team_member p.role {
  color: #ccc;
  margin: 20px 0;
  font-size: 25px;
  text-transform: uppercase;
}

.team .team_member .team_img {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #fff;
}

.team .team_member .team_img img {
  width: 100px;
  height: 100px;
  padding: 5px;
}

.banner {
  background: linear-gradient(-45deg, #555555, #474747, #1f1e1e, #000000);
  background-size: 400% 400%;
  animation: gradient 15s ease infinite;
  font-family: 'Josefin Sans', sans-serif;
  height: 100%;
}

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

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

  100% {
    background-position: 0% 50%;
  }
}

.navbar {
  width: 85%;
  margin: auto;
  padding: 35px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  width: 100px;
  cursor: pointer;
}

.navbar ul li {
  list-style: none;
  display: inline-block;
  margin: 0 20px;
  position: relative;
}

.navbar ul li a {
  text-decoration: none;
  color: #fff;
  text-transform: uppercase;
}

.navbar ul li::after {
  content: '';
  height: 3px;
  width: 0%;
  background: #ffffff;
  position: absolute;
  left: 0;
  bottom: -10px;
  transition: 0.5s;
}

.navbar ul li:hover::after {
  width: 100%;
}

.content {
  width: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  color: #fff;
}

.content h1 {
  font-size: 70px;
  z-index: 10;
  margin-top: 80px;
}

.content a {
  margin: 20px auto 20px;
  font-weight: 100;
  z-index: 10;
  line-height: 25px;
}

.patreon {
  border: solid #00f5ff 3px;
  padding: 12px 12px 7px;
  border-radius: 18px;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.2);
  transition: 0.1s;
  margin: auto;
  animation: shake 2s infinite;
  animation-delay: -1s;
}


.patreon:hover {
  transform: rotate(3deg) !important;
}

@keyframes shake {
  0% {
    transform: rotate(0deg);
  }

  10% {
    transform: rotate(2deg);
  }

  15% {
    transform: rotate(-4deg);
  }

  20% {
    transform: rotate(3deg);
  }

  25% {
    transform: rotate(0deg);
  }

}


.patreon:hover::after {
  display: none;
}

.cursor {
  position: absolute;
  margin: 10px 15px;
  transform: translateY(-18px);
  color: #82b0ff;
  animation: cursor 1.2s infinite;
}

@keyframes cursor {
  0% {
    opacity: 1;
    animation-timing-function: steps(1, end);
  }

  50% {
    opacity: 0;
    animation-timing-function: steps(1, end);
  }

  100% {
    opacity: 1;
  }
}

#particles-js {
  overflow: hidden;
  position: absolute;
  opacity: 0.8;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -10;
}

button {
  padding: 16px 0;
  text-align: center;
  margin: 10px 5px;
  border-radius: 25px;
  font-weight: bold;
  border: 3px solid #fff;
  background: transparent;
  color: rgb(255, 255, 255);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: 0.5s;
}

button span {
  background: #000000;
  height: 100%;
  width: 100%;
  /*border-radius: 25px;*/
  position: absolute;
  left: 0;
  bottom: 0;
  transition: 0.2s;
  z-index: -1;
  opacity: 0;
}

button:hover {
  transition: 0.5s;
  transform: scale(1.05);
}

button:hover span {
  opacity: 0.4;
}

.disabled:hover {
  animation: wobble 0.2s linear;
  cursor: not-allowed;
  transform: scale(1) !important;
}

.disabled:hover span {
  width: 0 !important;
  opacity: 0 !important;
}

@keyframes wobble {
  0% {
    transform: translateX(-3px);
  }

  25% {
    transform: translateX(2px);
  }

  50% {
    transform: translateX(-1px);
  }

  75% {
    transform: translateX(1px);
  }

  100% {
    transform: translateX(0px);
  }
}

.download {
  width: 175px;
  border-color: #00f5ff;
}

.resources {
  width: 175px;
}