/* Available before the application bundle. React replaces this content on mount. */
.journey-launch {
  min-height: 100svh;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 16px;
  box-sizing: border-box;
  padding: max(24px, env(safe-area-inset-top)) max(24px, env(safe-area-inset-right))
    max(24px, env(safe-area-inset-bottom)) max(24px, env(safe-area-inset-left));
  font-family: system-ui, sans-serif;
  text-align: center;
  color: #15354a;
  background: #eef7fc;
}
body:has(.journey-launch) {
  margin: 0;
}
.journey-launch img {
  width: 60px;
  height: 60px;
}
.journey-launch h1 {
  margin: 0;
  font-family: Georgia, serif;
  font-size: 38px;
  font-weight: 500;
}
.journey-launch p {
  margin: 0;
  line-height: 1.6;
}
.journey-launch a {
  color: inherit;
  overflow-wrap: anywhere;
}
.journey-launch small {
  max-width: 340px;
  line-height: 1.6;
}
[data-theme='dark'] .journey-launch {
  background: #081725;
  color: #e4f2fa;
}
