.splash {
  position: fixed;
  top: 0;
  z-index: 99;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background-color: #000;
  flex-direction: column;
  background: #000 url(../assets/backgrounds/lightspeed.jpeg) no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}

.splash.hide {
  display: none;
}

.splash .row {
  flex-direction: column;
  align-items: center;
}

.splash h2 {
  flex: none;
  font-size: 2rem;
  margin-bottom: 1rem;
  text-shadow: 1px 1px 10px var(--neon-blue);
  font-family: 'Star Wars', sans-serif;
}

.splash .button {
  width: 230px;
  font-family: 'Star Wars', sans-serif;
  box-sizing: border-box;
  padding-top: 4px;
}

#closeCreditsButton {
  position: absolute;
  top: 2rem;
  z-index: 10;
  width: 300px;
  font-family: 'Star Wars';
  padding-top: 4px;
}

.credits-text {
  display: flex;
  justify-content: center;
  position: relative;
  height: 800px;
  color: #feda4a;
  font-family: 'Pathway Gothic One', sans-serif;
  font-size: 400%;
  font-weight: 600;
  letter-spacing: 6px;
  line-height: 150%;
  perspective: 400px;
  text-align: left;
}

.credits-text a {
  color: #fff;
  text-decoration: none;
}

.fade {
  position: relative;
  width: 100%;
  min-height: 60vh;
  top: -25px;
  background-image: linear-gradient(0deg, transparent, black 75%);
  z-index: 1;
}

.crawler {
  position: relative;
  top: 99999px;
  transform-origin: 50% 100%;
}

.crawler.crawl {
  animation: crawl 60s linear;
}

.crawler .title {
  font-size: 90%;
  text-align: center;
}

.crawler .title h2 {
  margin: 0 0 100px;
  text-transform: uppercase;
}

@keyframes crawl {
  0% {
    top: 700px;
    transform: rotateX(20deg) translateZ(0);
  }

  100% {
    top: -6000px;
    transform: rotateX(25deg) translateZ(-2500px);
  }
}

.tabset>input[type="radio"] {
  position: absolute;
  left: -200vw;
}

.tabset .tab-panel {
  display: none;
}

.tabset>input:first-child:checked~.tab-panels>.tab-panel:first-child,
.tabset>input:nth-child(3):checked~.tab-panels>.tab-panel:nth-child(2) {
  display: block;
}

.tabset>label {
  position: relative;
  display: inline-block;
  padding: 15px 15px 15px;
  border: 1px solid transparent;
  border-bottom: 0;
  cursor: pointer;
  font-family: 'Star Wars', sans-serif;
  background-color: #000000;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.tabset>input:checked+label {
  border-color: #ffffff;
  border-bottom: 1px solid #000;
  margin-bottom: -1px;
}

#optionsForm {
  font-size: 1rem;
  text-align: left;
}

#optionsMessage {
  margin-bottom: 1rem;
  background-color: #0b5b0b;
  padding: 4px;
  border-radius: 5px;
}

#optionsForm table {
  text-align: left;
  background-color: #000;
  padding: 1rem;
  border: 1px solid #fff;
  border-radius: 5px;
  border-top-left-radius: 0;
  width: 500px;
}

#optionsForm table td {
  vertical-align: top;
}

#optionsForm table label {
  display: inline-block;
  width: 220px;
  margin-right: 1rem;
}

#optionsForm .description {
  font-size: .8rem;
}

#optionsForm input[type=radio], #optionsForm input[type=checkbox] {
  width: 20px;
  height: 20px;
  margin: 0;
}

#optionsForm select {
  font-size: 1rem;
  padding: 2px;
  width: 100%;
}

#optionsForm .buttons {
  flex-direction: row;
  display: flex;
  margin-top: 1rem;
  gap: 1rem;
  flex-wrap: wrap;
}

#optionsForm .buttons .button {
  width: 242px;
}