* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  background-color: #000;
  color: #fff;
  font-family: monospace, monospace;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  text-align: center;
  max-width: 600px;
}

.ascii-art {
  font-size: 6px;
  line-height: 8px;
  margin-bottom: 20px;
  user-select: none;
}

.links {
  margin-bottom: 20px;
}

.links a {
  color: #fff;
  text-decoration: underline;
  margin: 0 10px;
  font-size: 14px;
}

.buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
}

button {
  background: none;
  border: 1px solid #fff;
  color: #fff;
  padding: 2px 8px;
  font-family: monospace;
  font-size: 14px;
  cursor: pointer;
  border-radius: 0;
  user-select: none;
}

button:focus {
  outline: none;
  background: #fff;
  color: #000;
}