:root {
  --accent: #e89e67;
  --text: #1a1919;
  --bg: #ffffff;
  --max-width: 32rem;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem 14rem;
}

.centered {
  max-width: var(--max-width);
  width: 100%;
  text-align: center;
}

.hero {
  display: block;
  margin: 0 auto 1.5rem;
  height: auto;
  max-width: 100%;
  opacity: 0.65;
}

.heading {
  font-size: 0.875rem;
  font-weight: 900;
  line-height: 1.43;
  letter-spacing: 0.125em;
  text-transform: uppercase;
  margin: 0 0 1rem;
  color: var(--accent);
}

.message {
  font-size: 1.0625rem;
  line-height: 1.55;
  color: var(--text);
  margin: 0;
}

.message p {
  margin: 0 0 0.75rem;
}

.message p:last-child {
  margin-bottom: 0;
}

.message a {
  color: var(--text);
  text-decoration: underline;
}
