@charset "UTF-8";
/* ————————————————————————————————— */
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,600;0,700;1,300&display=swap");
/* ————————————————————————————————— */
/* ————————————————————————————————— */
:root {
  --brand: #bfb8ff;
  --brand-alt: #9d95e2;
  --greyple: #99aab5;
  --dark-not-black: #2c2f33;
  --off-white: #f6f6f6;
  --white: #fff;
  --not-quite-black: #23272a;
  --black: #000;
}

/* ————————————————————————————————— */
body {
  padding: 0;
  margin: 0;
  width: 100vw;
  height: 100vh;
  overflow-x: hidden;
  background: var(--dark-not-black);
}
body * {
  font-family: "Poppins", sans-serif;
}
body:hover > section.hero {
  background: #000000aa;
}

/* ————————————————————————————————— */
section {
  width: 100vw;
  min-height: 10rem;
  padding: 0;
  margin: 0;
  background: var(--off-white);
}
section h1 {
  font-size: 3rem;
  margin: 0 0 1rem;
}
section.hero {
  z-index: 1;
  background: #00000055;
  transition: background 0.25s ease-in-out;
  height: 90vh;
  padding: 5vh 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
section.hero h1, section.hero sub {
  color: var(--white);
}
section.hero h1 {
  font-size: 50px;
  margin: 0;
}
section.hero sub {
  margin: 1vh 0 0;
  font-size: 25px;
}
section.hero .buttons {
  width: 20%;
  margin: 2rem 0 0;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
}
section.hero .buttons button, section.hero .buttons a.button {
  margin: 0.5rem 0;
}
section.hero .spacer {
  width: 20%;
  border-bottom: 1px solid var(--brand);
  margin: 0.5rem 0;
}

/* ————————————————————————————————— */
button, a.button {
  padding: 0.25rem 3rem;
  border-radius: 100px;
  cursor: pointer;
  user-select: none;
  border: 3px solid var(--brand);
  outline: none;
  background: var(--off-white);
  color: var(--brand-alt);
  font-size: 15px;
  text-decoration: none;
  transition: transform 0.25s ease-in-out, color 0.25s ease-in-out, background 0.25s ease-in-out;
}
button:hover, a.button:hover {
  transform: scale(1.025, 1.025);
  background: var(--brand);
  color: var(--off-white);
}
button.discord, a.button.discord {
  color: var(#5b71c0);
  border: 3px solid var(#7289da);
}
button.discord:hover, a.button.discord:hover {
  transform: scale(1.025, 1.025);
  background: var(#7289da);
  color: var(--off-white);
}

/* ————————————————————————————————— */
video.hero {
  z-index: -1;
  position: fixed;
  top: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
}

/*# sourceMappingURL=main.css.map */
