* {
  box-sizing: border-box;
}

html {
  color-scheme: light;
  background: #fff;
}

body {
  margin: 0;
  background: #fff;
  color: #000;
  font-family: Times, "Times New Roman", serif;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: normal;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

.page {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 24px;
}

.card {
  width: max-content;
  max-width: 100%;
  text-align: left;
}

p {
  margin: 16px 0;
}

.identity {
  margin-bottom: 8px;
}

footer {
  color: #767676;
}

a {
  color: inherit;
  font-style: italic;
  text-decoration: none;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

a:hover,
a:focus-visible {
  text-decoration: underline;
}

a:focus-visible {
  outline: 1px solid currentColor;
  outline-offset: 3px;
}

@media (max-width: 360px) {
  .page {
    justify-content: flex-start;
  }
}
