:root {
  --serif: "Stardom-Regular", "Liberation Serif", "Times New Roman", serif;
}

body {
  padding: 0;
  margin: 0;
  overflow: hidden;
  text-align: center;
  color: white;
  font-family: Inter, -system-ui, -apple-system, "Segoe UI", Ubuntu, Cantarell, "Helvetica Neue", Roboto, sans-serif;
  background-image: url("/img/bg.png");
  background-position: bottom center;
  background-size: cover;
  background-attachment: fixed;
  height: 100vh;
}


.start_bg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  background-color: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.start {
  width: 40%;
  font-size: 1.5rem;
}

h1 {
  font-family: var(--serif), serif;
  font-size: 5rem;
}

h1 b {
  font-size: 8rem;
}

.reels {
  display: none;
  animation: fadeIn 2s;
  background-color: black;
  width: 100%;
  height: 8rem;
  position: absolute;
  bottom: 10%;
}

.e8400_reel {
  width: 100%;
  margin: 0 auto;
  white-space: nowrap;
  overflow: hidden;
  position: absolute;
  font-family: var(--serif), serif;
  font-size: 6rem;
}

.e8400_reel span {
  display: inline-block;
  padding-left: 100%;
  animation: marquee 5s linear infinite;
}

.e8400_reel_secondary span {
  animation-delay: 2.5s;
}

@keyframes marquee {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(-100%, 0);
  }
}

@keyframes fadeIn {
  0% {
    background-color: transparent;
    opacity: 0;
  }
  100% {
    background-color: black;
    opacity: 1;
  }
}

audio {
  display: none;
}

button, input[type=submit] {
  border: none;
  font-size: 1.5rem;
  padding: .75rem 1.5rem;
  border-radius: .25rem;
  font-family: inherit;
  background-color: #409b98;
  color: white;
  margin-top: 2rem;
}

input {
    border: 2px solid #DBDBDB;
  font-size: 1.2rem;
  padding: .37rem .75rem;
  border-radius: .25rem;
  font-family: inherit;
  background-color: white;
  color: black;
  margin-top: 2rem;
}

.g-recaptcha {
    display: flex;
    justify-content: center;
    margin: 0 auto;
}

label {
    font-size: 1.1rem;
}
a {
    color: white;
    text-decoration: none;
}
@media (max-width: 1000px) {
  .start {
    width: 60%;
  }
  .reels {
    height: 3.25rem;
  }
  .e8400_reel {
    font-size: 2.5rem;
  }
}

@media (max-width: 600px) {
  .start {
    width: 80%;
  }
  h1 {
    font-size: 4rem;
  }
  h1 b {
    font-size: 6rem;
  }
}
@media (max-height: 640px) {
  h1 {
    margin: 0;
    font-size: 3rem;
  }
  h1 b {
    font-size: 5rem;
  }
  .start {
    font-size: 1.25rem;
  }
  button {
    margin-top: 0;
  }
}

/**
* @license
*
* Font Family: Stardom
* Designed by: Indian Type Foundry
* URL: https://www.fontshare.com/fonts/stardom
* Â© 2025 Indian Type Foundry
*
* Stardom Regular

*
*/
@font-face {
  font-family: "Stardom-Regular";
  src: url("/fonts/Stardom-Regular.woff2") format('woff2'),
  url("/fonts/Stardom-Regular.woff") format('woff'),
  url("/fonts/Stardom-Regular.ttf") format('truetype');
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
