:root {
  color-scheme: light;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  background: #f6f7fb;
  color: #18191d;
}

* {
  box-sizing: border-box;
}

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

main {
  width: min(100%, 460px);
  padding: 32px;
  border: 1px solid rgba(24, 25, 29, 0.08);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 18px 54px rgba(32, 37, 48, 0.12);
  text-align: center;
}

img {
  width: 56px;
  height: 56px;
}

h1 {
  margin: 20px 0 10px;
  font-size: clamp(1.65rem, 5vw, 2rem);
  line-height: 1.1;
}

p {
  margin: 0;
  color: #62666f;
  line-height: 1.55;
}

a {
  display: inline-flex;
  margin-top: 24px;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: #121316;
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
}

a:focus-visible {
  outline: 3px solid #6d72ff;
  outline-offset: 3px;
}
