/* Global Styles */
@import url("https://fonts.googleapis.com/css2?family=Rubik+Mono+One&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Material+Icons&display=swap");
html, body {
  margin: 0;
  padding: 0;
}

body {
  height: 100vh;
  background: #292F36;
  color: #fff;
  font-family: "Rubik", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5rem;
  font-optical-sizing: auto;
  padding: 3rem 1.5rem 0;
}
@media (min-width: 48em) {
  body {
    padding: 3rem 0 0;
  }
}

a {
  color: #fff;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}
a:hover {
  background: rgba(244, 208, 111, 0.24);
}

h1, h2, h3 {
  font-family: "Rubik Mono One", monospace;
}

h1 {
  font-size: 4.5rem;
  line-height: 4.25rem;
}

.material-icons {
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 36rem;
  margin: 0 auto;
}

.bg-video {
  position: fixed;
  top: 50%;
  left: 50%;
  min-width: 100vw;
  min-height: 100vh;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: -2;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(41, 47, 54, 0.8);
  z-index: -1;
}

.button {
  display: block;
  background: #F4D06F;
  color: #292F36;
  padding: 1.25rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 500;
}
.button:hover {
  background: #F4D06F;
  opacity: 0.9;
}
.button.button-arrow {
  display: flex;
  justify-content: space-between;
}
.button.button-arrow::after {
  content: "arrow_forward";
  font-family: "Material Icons";
  margin-left: auto;
  vertical-align: middle;
  font-size: 1.5rem;
}
@media (min-width: 48em) {
  .button.button-arrow {
    display: inline-block;
  }
  .button.button-arrow::after {
    margin-left: 1.5rem;
  }
}
@media (min-width: 48em) {
  .button {
    display: inline-block;
  }
}

.logo {
  display: block;
}

.tag, .activities-wrapper .activities .activity {
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 0.5rem;
  padding: 1rem 1.15rem;
  font-weight: 500;
}

.hero {
  padding-top: 6rem;
}
@media (min-width: 48em) {
  .hero {
    padding-top: 8rem;
  }
}
.hero h1 {
  margin: 0;
}
.hero p {
  margin-top: 1rem;
  font-size: 1.5rem;
  line-height: 1.75rem;
}
@media (min-width: 48em) {
  .hero p {
    padding-right: 8rem;
  }
}

@media (min-width: 48em) {
  .tally-popup {
    width: 40em !important;
  }
}

.activities-wrapper {
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  position: relative;
  -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 5%, rgb(0, 0, 0) 95%, rgba(0, 0, 0, 0) 100%);
  mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 5%, rgb(0, 0, 0) 95%, rgba(0, 0, 0, 0) 100%);
}
.activities-wrapper .activities {
  display: flex;
  gap: 0.5rem;
  position: relative;
  margin: 0.5rem 0 2rem;
}
.activities-wrapper .activities .activity {
  flex: 1;
  white-space: nowrap;
}

footer {
  padding: 8rem 0 1.5rem;
}

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