@font-face {
  font-family: 'Ubuntu Mono';
  src: url('./fonts/UbuntuMono-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Future Forces';
  src: url('./fonts/futureforces.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  background-color: black;
  color: white;
  font-family: 'Ubuntu Mono', monospace;
  overflow: hidden;
}

canvas {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 0;
  background-color: #000000;
}

.landing-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  text-align: center;
  color: white;
}

.statmem-text-landing {
  font-size: 4rem;
  font-weight: 700;
  font-family: 'Future Forces', sans-serif;
  text-align: center;
  color: rgb(151, 35, 218);
}

.home-content {
  position: relative;
  color: white;
  font-family: 'Ubuntu Mono', monospace;
  text-align: center;
}

.hidden {
  opacity: 0;
  pointer-events: none;
  display: none; /* optionally, if you want it completely hidden */
}

.landing-content.slide-out {
  transform: translate(-50%, 150%);
  opacity: 0;
}

#drip-canvas.slide-out {
  transform: translateY(150%);
  opacity: 0;
}

.fade-in {
  opacity: 1;
}

.landing-content,
#drip-canvas,
#home-content {
  transition: transform 0.6s ease, opacity 0.6s ease;
}

.text-xs-center {
    text-align: center;
}

.g-recaptcha {
    display: inline-block;
    margin-bottom: 30px;
}