* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  background: #000;
  overflow: hidden;
  font-family: 'JetBrains Mono', 'Fira Code', 'SF Mono', 'Cascadia Code', monospace;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
}

#stars {
  position: fixed;
  inset: 0;
  z-index: 0;
  cursor: crosshair;
}

.content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  pointer-events: none;
  user-select: none;
  width: fit-content;
}

.content h1 {
  font-size: 2.1rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  opacity: 0.9;
  margin-bottom: 0.5rem;
  border-bottom 1px solid white;
}

.content p {
  font-size: 0.9rem;
  color: #fff;
  opacity: 0.5;
  margin-bottom: 0.5rem;
}

.line {
  background: #fff;
  height: 0.1rem;
  width: 100%;
  opacity: 0.5;
 }

.powered-by {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: #fff;
  font-size: 1.2rem;
  opacity: 1.0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

.powered-by img {
  height: 1.5em;
  vertical-align: middle;
}

