*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-sans);
  background:
    radial-gradient(circle at top, #ffffff 0, #eef1f7 38%, #e6eaf3 100%);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.prototype-body {
  display: grid;
  place-items: center;
  padding: 18px;
}

body.prototype-body.is-dark-body {
  background:
    radial-gradient(circle at top, #22304c 0, #101725 40%, #08111f 100%);
}

body.redirect-screen {
  display: grid;
  place-items: center;
  padding: 24px;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

button {
  border: 0;
  background: transparent;
  cursor: pointer;
}

img,
svg {
  display: block;
  max-width: 100%;
}

.redirect-card {
  display: grid;
  gap: 12px;
  width: min(360px, 100%);
  padding: 28px;
  border-radius: 24px;
  background: var(--surface);
  box-shadow: var(--shadow-card);
  text-align: center;
}
