* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
  margin: 0;
}

body {
  background: #000;
  color: #b6b6b6;
  font-family: "Courier New", "Consolas", monospace;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 24px;
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  width: 100%;
  max-width: 480px;
}

.logo {
  width: 100%;
  max-width: 360px;
  height: auto;
}

.links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 24px;
}

.links a {
  color: #b6b6b6;
  text-decoration: none;
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.links a:hover,
.links a:focus {
  color: #000;
  background: #b6b6b6;
}
