:root {
  --bg: #f7f7f4;
  --card: #ffffff;
  --text: #222222;
  --muted: #666666;
  --line: #e8e8e2;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  background: #ffffff;
  color: var(--text);
  display: grid;
  place-items: center;
  padding: 24px;
}

main {
  width: 100%;
  max-width: 570px;
  background: #ffffff;
  padding: 28px;
  text-align: center;
}

img {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 10px;
}

h1 {
  margin: 22px 0 12px;
  font-size: 1.65rem;
}

p {
  margin: 8px 0;
  color: var(--muted);
  line-height: 1.5;
}

a {
  color: var(--text);
}
