@layer base {
  :root {
    --font-size: 16px;
    --font-family: 'JetBrains Mono', monospace;
  }
}

#app {
  display: flex;
  gap: 1ch;
  align-items: flex-start;
  flex-direction: row;
}

.badge-ticker {
  height: 31px;
  width: 88px;
  overflow: hidden;
  margin: 0.5lh auto;
}

.badge-track {
  display: flex;
  flex-direction: column;
  gap: 0;
  animation: vertical-badges 8s ease-in-out infinite;
}

.badge-track:hover {
  animation-play-state: paused;
}

.badge-track img {
  display: block;
  width: 88px;
  height: 31px;
  image-rendering: pixelated;
}

@keyframes vertical-badges {
  0%, 28% {
    transform: translateY(0);
  }
  33%, 61% {
    transform: translateY(-31px);
  }
  66%, 94% {
    transform: translateY(-62px);
  }
  100% {
    transform: translateY(-93px);
  }
}

[hidden] {
  display: none !important;
}

.header {
  display: flex;
  justify-content: space-between;
}

#checkForm {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: 1ch;
}

a {
  color: var(--gb-red) !important;
}

html, body {
  min-height: 100vh;
  margin: 0;
}

body {
  display: flex;
  align-items: flex-start;    
  justify-content: center;  
  background-color: var(--background0);
  color: var(--foreground0);
}

#pass {
  width: 100%;
  box-sizing: border-box;
}

#content {
  padding: 1lh 1ch;
  padding-top: 1ch;
  display: flex;
  flex-direction: column;
}

#resultMessage {
  align-self: center;
}


.center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}


