:root{
  --font-sans: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --color--off-black-600: #3C3C3B;
  --color--bone-white: #FAFAFA;
  --color--accent: #E1F986;
}

body {
  font-family: var(--font-sans);
  margin: 0;
  padding: 0;
  color: var(--color--bone-white);
  background: var(--color--off-black-600);
  font-size: 1em;
  font-family: "DM Mono", monospace;
  font-weight: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

p {
  margin: 0;
  padding: 0;
}

header {
  height: 100vh;
  width: 100vw;
  position: relative;
  overflow: hidden;
}

.flexbox {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  justify-content: center;
  align-items: center;
  position: relative;
}

.comingsoon-container {
  position: relative;
  text-align: center;
  display: flex;
  align-items: center;
  gap: .5rem;
}

.square-accent {
  width: .625rem;
  height: .625rem;
  background: var(--color--accent);
}

.caption {
  font-size: 1rem;
  letter-spacing: -0.4px;
  line-height: 1.2;
  text-transform: uppercase;
}

.dither-bg {
  position: absolute;
  bottom: -8vh;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  background: url(./assets/Dither.svg) center/cover no-repeat;
}

.cta {
  opacity: .7;
  display: flex;
  flex-direction: column;
  gap: .625rem;
  position: absolute;
  bottom: 8vh;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 5;
}

.cta .caption {
  font-size: .875rem;
}

.cta a {
  font-family: "DM Mono", monospace;
  text-transform: uppercase;
  font-size: .875rem;
  color: var(--color--bone-white);
  text-decoration: underline;
}