:root {
  --bg-blue: #222931;
  --white: #ffffff;
}

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

html, body {
  height: 100%;
}

body {
  background: var(--bg-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Helvetica, Arial, sans-serif;
  position: relative;
  overflow: hidden;
}

/* Canvas must NEVER affect layout */
#stars {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1;
  pointer-events: none;
}

/* Logo */
.logo-frame {
  border: 4px solid var(--white);
  padding: 28px 48px;
  letter-spacing: 0.22em;
  z-index: 2;
}

.logo-text {
  color: var(--white);
  font-size: 42px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
  transform: scaleX(0.96);
  transform-origin: center;
}

.logo-mid {
  display: inline-block;
  transform: scaleX(0.94);
}

/* Footer */
.copyright {
  position: absolute;
  bottom: 24px;
  color: rgba(255,255,255,0.6);
  font-size: 12px;
  letter-spacing: 0.06em;
  font-family:
    SFMono-Regular,
    Menlo,
    Consolas,
    "Courier New",
    monospace;
  z-index: 2;
}

@media (min-width: 768px) {
  .logo-text {
    font-size: 48px;
  }
}
