:root {
  --bg: #ffffff;
  --text: #111111;
  --button: #000000;
  --button-text: #ffffff;
  --radius: 12px;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
}

.container {
  max-width: 420px;
  margin: 40px auto;
  padding: 20px;
  text-align: center;
}

.link-button {
  display: block;
  margin: 12px 0;
  padding: 14px;
  background: var(--button);
  color: var(--button-text);
  text-decoration: none;
  border-radius: var(--radius);
  font-weight: bold;
}