@import url("https://fonts.googleapis.com/css2?family=Source+Code+Pro:wght@300;400&amp;family=Source+Sans+Pro:wght@300;400&amp;display=swap");
@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,200;1,200&amp;display=swap");

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

.canvas-container {
  z-index: -10;
}

#canvas {
  top: 0;
  left: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  background: (#ffffff00, black);
  /* Keep particles above the hero content (including the headshot),
     but don’t block clicks on links/buttons. */
  z-index: 1;
  pointer-events: none;
}

.title-container {
  z-index: 1;
  text-align: center;
  top: 50%;
  left: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  width: 80%;
}

h1 {
  color: white;
  font-size: 2.7rem;
}

h3 {
  color: #dedede;
  font-size: 1rem;
}

a {
  color: white;
  font-family: 'Source Sans Pro', sans-serif;
}

hr.hr {
  margin: 0 auto;
  width: 50%;
  border: 1px solid #01061f1a;
}

@media (min-width: 600px) {
  h1 {
    font-size: 3.5rem;
  }

  h3 {
    font-size: 1.1rem;
  }
}
@media (min-width: 800px) {
  h1 {
    font-size: 4.5rem;
  }

  h3 {
    font-size: 1.8rem;
  }
}

@media (min-width: 1200px) {
  h1 {
    font-size: 5.2rem;
  }

  h3 {
    font-size: 2rem;
  }
}

@media (min-width: 1500px) {
  h1 {
    font-size: 5.5rem;
  }
  h3 {
    font-size: 2.15rem;
  }
}

@media (min-width: 1750px) {
  h1 {
    font-size: 5.75rem;
  }
  h3 {
    font-size: 2.25rem;
  }
}

@media (min-width: 2000px) {
  h1 {
    font-size: 6.1rem;
  }
  h3 {
    font-size: 2.25rem;
  }
}

a.btn {
  text-decoration: none;
  color: white;
  background: #01061f1a;
  font-family: "Josefin Sans", sans-serif;
  font-size: 2rem;
  text-align: center;
  width: 200px;
  display: block;
  padding: 16px 0;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
  margin: 0 auto;
  box-sizing: border-box;
  border-radius: 4px;
  border: 1px solid #01061f1a;
}

a.btn::before {
  content: "";
  background-image: url(../images/discord.html);
  background-size: 100px 100px;
  background-position: center center;
  background-repeat: no-repeat;
  font-family: "Josefin Sans", sans-serif;
  color: #01061f1a;
  position: absolute;
  display: block;
  width: 200px;
  height: 200px;
  box-sizing: border-box;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
  pointer-events: none;
}

a.btn:hover {
  color: #01061f1a;
  background: transparent;
}

a.btn:hover::before {
  transform: translateY(50px);
  opacity: 1;
}

@media (max-width: 800px) {
  a.btn {
    font-size: 1.35rem;
    width: 160px;
    padding: 12px 0;
  }
  a.btn::before {
    background-size: 70px 70px;
    width: 160px;
    height: 160px;
  }
  a.btn:hover::before {
    transform: translateY(24px);
    opacity: 1;
  }
}

@media (max-width: 500px) {
  a.btn {
    font-size: 1.2rem;
    width: 140px;
    padding: 9px 0;
  }
  a.btn::before {
    background-size: 50px 50px;
    width: 140px;
    height: 140px
  }
  a.btn:hover::before {
    transform: translateY(16px);
    opacity: 1;
  }
}