/* Gumi Yum — Sealife Swim | minimal text-only styling */

:root { color-scheme: light dark; }

body {
  margin: 0;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding: 24px;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  background: #0a5f96;
  color: #fff;
  text-align: center;
}

.name {
  margin: 0;
  font-size: clamp(2.5rem, 14vw, 6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.miss { margin: 0 0 1.5rem; opacity: 0.75; }

.list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  justify-content: center;
  font-size: 1.25rem;
}

.list a { color: #fff; text-decoration: none; border-bottom: 1px solid rgba(255, 255, 255, 0.4); }
.list a:hover, .list a:focus-visible { border-bottom-color: #fff; }
