* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  cursor: url('cursor.png'), auto;
  pointer-events: none;
}

html, body {
  background-color: #111;
  max-height: 100vh;
  height: 100vh;
  overflow: hidden;
  pointer-events: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.ascii-art {
  font-family: monospace;
  font-size: 8px;
  line-height: 1;
  color: #fff;
  white-space: pre;
  text-align: center;
}

.links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.center-link {
  font-size: 12px;
  font-family: monospace;
  color: #fff;
  text-decoration: none;
  pointer-events: auto;
}

.center-link:hover {
  text-decoration: underline;
}
