:root {
  color: #13252b;
  background: #f5f8f8;
  font-family: -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  letter-spacing: 0;
}

body {
  display: grid;
  min-height: 100vh;
  margin: 0;
  padding: 24px;
  place-items: center;
}

main {
  width: min(420px, 100%);
  text-align: center;
}

img {
  width: 112px;
  height: 112px;
  object-fit: contain;
}

h1 {
  margin: 18px 0 8px;
  font-size: 30px;
}

p {
  margin: 0 0 24px;
  color: #586b73;
  line-height: 1.45;
}

a {
  display: inline-grid;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 7px;
  background: #008f98;
  color: white;
  font-weight: 650;
  text-decoration: none;
  place-items: center;
}

@media (prefers-color-scheme: dark) {
  :root {
    color: #edf6f6;
    background: #10191d;
  }

  p {
    color: #a6b8bd;
  }

  a {
    color: #082226;
    background: #27b8bf;
  }
}
