@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&family=Instrument+Mono&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
}

html,
body {
  width: 100%;
  min-height: 100dvh;
  background: #0b0d10;
  display: flex;
  flex-direction: column;
  align-items: center;
  -webkit-font-smoothing: antialiased;
  scrollbar-gutter: stable;
}

main {
  width: 100%;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 1.5rem 0 1rem;
  font-family: 'Instrument Mono', monospace;
  cursor: default;
  width: 100%;
}

.footer-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.2);
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
}

.footer-heart {
  font-size: 10px;
  color: #ef4444;
  opacity: 0.7;
}

.back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Instrument Mono', monospace;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.25);
  text-decoration: none;
  letter-spacing: 0.08em;
  margin-bottom: 2rem;
  transition: color 0.2s;
}

.back:hover {
  color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 540px) {

  html,
  body {
    justify-content: flex-start !important;
  }
}
