:root {
  color-scheme: light;
  font-family:
    Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #12304d;
  background: #f5f9fd;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-width: 320px;
  min-height: 100%;
  margin: 0;
}

body {
  min-height: 100vh;
  min-height: 100dvh;
  background:
    radial-gradient(circle at 50% 42%, rgb(255 255 255 / 92%) 0 20%, transparent 58%),
    linear-gradient(145deg, #edf5fc 0%, #f9fbfe 52%, #e7f1fa 100%);
}

.welcome {
  display: grid;
  min-height: 100vh;
  min-height: 100dvh;
  place-items: center;
  padding: 2rem 1.25rem;
  text-align: center;
}

.welcome__content {
  width: min(100%, 38rem);
}

h1 {
  margin: 0;
  color: #0758a6;
  font-size: clamp(2rem, 8vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.welcome__subtitle {
  margin: 1rem 0 0;
  color: #476985;
  font-size: clamp(1rem, 3vw, 1.2rem);
  line-height: 1.5;
}

.welcome__message {
  width: 80%;
  margin: 2.25rem auto 0;
  padding: 1.25rem 1.5rem;
  border: 1px solid #c8dcef;
  border-radius: 1rem;
  color: #274c6d;
  background: #fff;
  box-shadow: 0 0.5rem 1.75rem rgb(7 88 166 / 8%);
  font-size: clamp(1rem, 2.5vw, 1.1rem);
  line-height: 1.65;
}

.welcome__message h2 {
  margin: 0 0 0.75rem;
  color: #0758a6;
  font-size: clamp(1.15rem, 3vw, 1.35rem);
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.welcome__message p {
  margin: 0;
  overflow-wrap: anywhere;
}

.welcome__message time {
  display: block;
  margin-top: 1rem;
  color: #6a8298;
  font-size: 0.8rem;
  line-height: 1.4;
}

@media (prefers-reduced-motion: no-preference) {
  .welcome__content {
    animation: appear 500ms ease-out both;
  }

  @keyframes appear {
    from {
      opacity: 0;
      transform: translateY(0.5rem);
    }
  }
}
