:root {
  color-scheme: dark;
  font-family: Arial, Helvetica, sans-serif;
  background: #0a0e27;
  color: #b1f0e6;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 3rem 1.5rem;
  background:
    radial-gradient(ellipse at 20% 50%, rgb(0 255 200 / 5%), transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgb(138 43 226 / 5%), transparent 50%),
    linear-gradient(135deg, #0a0e27 0%, #1a0a3e 25%, #0f1a4d 50%, #1a0a3e 75%, #0a0e27 100%);
}

.welcome {
  width: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.emblem {
  display: grid;
  place-items: center;
  width: min(18.75rem, 100%);
  aspect-ratio: 1;
  animation: float 4s ease-in-out infinite;
}

.emblem img {
  display: block;
  width: 93.333%;
  height: auto;
  filter: drop-shadow(0 0 1.875rem rgb(0 255 200 / 50%))
    drop-shadow(0 0 3.75rem rgb(138 43 226 / 35%));
}

h1 {
  max-width: 100%;
  overflow-wrap: anywhere;
  margin: 2.5rem 0 0;
  padding-left: 0.3em;
  font-size: clamp(1.5rem, 5vw, 1.75rem);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #99f9e5;
  text-shadow: 0 0 1.75rem rgb(0 255 200 / 25%);
}

p {
  max-width: 100%;
  overflow-wrap: anywhere;
  margin: 1rem 0 0;
  padding-left: 0.2em;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #8fcac7;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-0.75rem); }
}

@media (prefers-reduced-motion: reduce) {
  .emblem { animation: none; }
}
