:root {
  --bg: #f6f8fb;
  --bg-2: #edf2f7;
  --paper: #ffffff;
  --ink: #1f2933;
  --ink-soft: #52606d;
  --accent: #1663d6;
  --accent-2: #0ea5a1;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--ink);
background:
  radial-gradient(circle at 18% 22%, rgba(120, 220, 200, 0.45) 0%, transparent 40%),
  radial-gradient(circle at 82% 30%, rgba(140, 200, 255, 0.4) 0%, transparent 42%),
  radial-gradient(circle at 60% 78%, rgba(180, 240, 230, 0.35) 0%, transparent 45%),
  radial-gradient(circle at 30% 70%, rgba(200, 255, 245, 0.35) 0%, transparent 40%),

  repeating-linear-gradient(
    45deg,
    rgba(255,255,255,0.35) 0px,
    rgba(255,255,255,0.35) 2px,
    transparent 2px,
    transparent 36px
  ),
  repeating-linear-gradient(
    -45deg,
    rgba(255,255,255,0.25) 0px,
    rgba(255,255,255,0.25) 2px,
    transparent 2px,
    transparent 36px
  ),

  linear-gradient(135deg, #e9fbf8 0%, #eef6ff 100%);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  line-height: 1.6;
  overflow-x: hidden;
}

.bg-orb {
  position: fixed;
  border-radius: 999px;
  filter: blur(44px);
  opacity: 0.2;
  z-index: -1;
}

.bg-orb-1 {
  width: 260px;
  height: 260px;
  background: #83d8cf;
  top: 12%;
  left: -70px;
}

.bg-orb-2 {
  width: 300px;
  height: 300px;
  background: #9eb8ef;
  right: -80px;
  bottom: 10%;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.7rem 1.2rem;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
  background: rgb(255 255 255 / 82%);
  border-bottom: 1px solid #dbe3ec;
  transition: transform 280ms ease;
}

.header-hidden {
  transform: translateY(-100%);
}

.brand {
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--ink);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.brand-text {
  margin-left: 0.45rem;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
}

nav {
  display: flex;
  gap: 1rem;
  align-items: center;
}

nav a {
  display: inline-flex;
  align-items: center;
  color: #334e68;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
}

.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-dropdown > a {
  display: inline-flex;
  align-items: center;
}

.nav-dropdown::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 10px;
}

.dropdown-menu {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 145px;
  background: #ffffff;
  border: 1px solid #d8e2ef;
  border-radius: 10px;
  box-shadow: 0 10px 24px rgb(16 24 40 / 9%);
  padding: 0.35rem;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-2px);
  transition: opacity 90ms ease, transform 90ms ease, visibility 90ms ease;
}

.dropdown-menu a {
  display: block;
  padding: 0.35rem 0.5rem;
  border-radius: 7px;
  font-size: 0.95rem;
}

.dropdown-menu a:hover {
  background: #eef5ff;
  color: var(--accent);
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

nav a.active {
  color: var(--accent);
}

main {
  width: min(980px, 92vw);
  margin: 0 auto;
  padding: 1.25rem 0 2.5rem;
  flex: 1;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  font-size: clamp(2rem, 5.8vw, 4.3rem);
  line-height: 1.05;
  margin: 0.2rem 0 0.6rem;
}

.subtitle {
  margin: 0.1rem 0 0.5rem;
  font-size: clamp(1.1rem, 2.2vw, 1.45rem);
  font-weight: 400;
  color: #3f5b74;
  letter-spacing: 0.01em;
}

.hero {
  text-align: center;
}

.profile-image {
  width: clamp(120px, 22vw, 190px);
  height: clamp(120px, 22vw, 190px);
  object-fit: cover;
  border-radius: 999px;
  border: 4px solid #ffffff;
  box-shadow: 0 8px 22px rgb(16 24 40 / 12%);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.profile-image:hover {
  transform: scale(1.04);
  box-shadow: 0 12px 26px rgb(16 24 40 / 16%);
}

.eyebrow {
  color: var(--accent-2);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 600;
}

.lead {
  font-size: 1.07rem;
  color: var(--ink-soft);
  max-width: 78ch;
  margin: 0.6rem auto 0;
  text-align: justify;
}

.hero-cta {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin: 0.75rem 0;
  justify-content: center;
}

.icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.social-icon {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.btn {
  display: inline-block;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
}

.btn-primary {
  color: #ffffff;
  background: var(--accent);
}

.btn-ghost {
  color: #274c77;
  border: 1px solid #9db4cf;
}

.panel {
  margin-top: 1.8rem;
  padding: 1.1rem;
  border: 1px solid #d5dfeb;
  border-radius: 14px;
  background: var(--paper);
  box-shadow: 0 10px 24px rgb(16 24 40 / 7%);
}

.panel h2 {
  margin-top: 0;
  font-family: "Outfit", sans-serif;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 0.8rem;
}

.project-card {
  border: 1px solid #d8e2ef;
  border-radius: 12px;
  padding: 0.85rem;
  background: #f8fbff;
  display: grid;
  grid-template-rows: minmax(3.2rem, auto) minmax(4.8rem, auto) auto;
  align-items: start;
  height: 100%;
}

.project-card h3 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.03rem;
  line-height: 1.25;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.project-card p:first-of-type {
  margin: 0;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.project-card p:last-of-type {
  margin-top: auto;
  margin-bottom: 0;
  padding-top: 0.75rem;
}

.project-card p:last-of-type a {
  display: inline-flex;
}

.page-intro {
  margin-top: 1.1rem;
}

.page-intro h1 {
  font-family: "Outfit", sans-serif;
  margin-bottom: 0.35rem;
}

.muted {
  color: var(--ink-soft);
}

.utility-note {
  padding: 0.65rem 0.8rem;
  border-left: 4px solid #93b6df;
  background: #f2f7ff;
  border-radius: 6px;
  margin-top: 0.8rem;
}

.blog-list {
  display: grid;
  gap: 0.9rem;
}

.post-article {
  border: 1px solid #d8e2ef;
  border-radius: 12px;
  overflow: hidden;
  background: #f8fbff;
}

.post-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.9rem 1rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 0.75rem;
  transition: background 120ms ease;
}

.post-toggle:hover {
  background: #eef5ff;
}

.post-toggle-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.post-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  font-family: "Outfit", sans-serif;
}

.post-toggle-icon {
  display: inline-block;
  min-width: 1ch;
  color: var(--ink);
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1;
  flex-shrink: 0;
  text-align: center;
  background: none;
  border: none;
  box-shadow: none;
}

.post-toggle[aria-expanded="true"] .post-toggle-icon {
  color: var(--ink);
  background: none;
  box-shadow: none;
}

.post-toggle:hover .post-toggle-icon {
  transform: translateY(-1px);
}

.post-summary {
  padding: 0 1rem 0.75rem;
  margin: 0;
  font-size: 0.95rem;
}

.post-content {
  padding: 0 1rem 1rem;
  border-top: 1px solid #d8e2ef;
}

.post-meta {
  font-size: 0.88rem;
  color: var(--ink-soft);
  margin: 0;
}

.post-content h1,
.post-content h2,
.post-content h3,
.post-content h4 {
  font-family: "Outfit", sans-serif;
}

.cv-main {
  width: min(980px, 92vw);
  margin: 0 auto;
  padding: 1.25rem 0 2.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.cv-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.cv-toolbar h1 {
  font-family: "Outfit", sans-serif;
  margin: 0;
}

.cv-viewer-wrap {
  border: 1px solid #d5dfeb;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgb(16 24 40 / 7%);
  background: #ffffff;
}

.cv-iframe {
  display: block;
  width: 100%;
  height: 82vh;
  border: none;
}

.project-hero {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.project-hero h1 {
  font-family: "Outfit", sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin: 0.2rem 0 0;
}

.project-links {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.project-screenshot-link {
  display: block;
}

.project-screenshot {
  display: block;
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 8px 22px rgb(16 24 40 / 10%);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.project-screenshot:hover {
  transform: scale(1.01);
  box-shadow: 0 12px 28px rgb(16 24 40 / 15%);
}

.project-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
  margin-top: 0;
}

.feature-list {
  margin: 0;
  padding-left: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.fig-caption {
  font-size: 0.93rem;
  color: var(--ink-soft);
  margin-top: 0.5rem;
}

.gwas-body p,
.gwas-body li {
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.7;
}

.gwas-body h2 {
  font-family: "Outfit", sans-serif;
  margin-top: 0;
}

.gwas-body ol,
.gwas-body ul {
  padding-left: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.gwas-equation {
  font-family: monospace;
  background: #f0f6ff;
  border-left: 3px solid #93b6df;
  padding: 0.5rem 0.8rem;
  border-radius: 6px;
  font-size: 0.97rem;
  color: var(--ink);
}

.gwas-figure-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-top: 1rem;
}

.gwas-figure {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.gwas-figure img {
  width: 100%;
  border-radius: 8px;
  border: 1px solid #d8e2ef;
}

.gwas-figure figcaption {
  font-size: 0.88rem;
  color: var(--ink-soft);
}

.gwas-table-wrap {
  overflow-x: auto;
}

.gwas-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.93rem;
}

.gwas-table th,
.gwas-table td {
  padding: 0.5rem 0.75rem;
  text-align: left;
  border-bottom: 1px solid #d8e2ef;
}

.gwas-table th {
  background: #f2f7ff;
  font-weight: 600;
  color: var(--ink);
}

.gwas-table tr:last-child td {
  border-bottom: none;
}

.gwas-refs {
  padding-left: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.scrna-figure-stack {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.site-footer-image-wrap {
  margin-top: 2rem;
}

.site-footer-image {
  display: block;
  width: 100%;
  height: min(34vh, 290px);
  object-fit: cover;
  object-position: center;
  border-top: 1px solid #d5dfeb;
}

.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 700px) {
  .site-header {
    padding: 0.9rem;
  }

  nav {
    gap: 0.7rem;
    flex-wrap: wrap;
  }

  .dropdown-menu {
    left: auto;
    right: 0;
  }
}

@keyframes move {
    100% {
        transform: translate3d(0, 0, 1px) rotate(360deg);
    }
}

.background {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    background: #f4fffe;
    overflow: hidden;
    z-index: -1;
}

.background span {
    width: 50vmin;
    height: 50vmin;
    border-radius: 50vmin;
    backface-visibility: hidden;
    position: absolute;
    animation: move;
    animation-duration: 12;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}


.background span:nth-child(0) {
    color: #d8f3f0;
    top: 17%;
    left: 84%;
    animation-duration: 111s;
    animation-delay: -111s;
    transform-origin: 9vw -21vh;
    box-shadow: -100vmin 0 13.285258336664388vmin currentColor;
}
.background span:nth-child(1) {
    color: #cfe9f7;
    top: 18%;
    left: 49%;
    animation-duration: 36s;
    animation-delay: -283s;
    transform-origin: -2vw 13vh;
    box-shadow: 100vmin 0 13.416275740457245vmin currentColor;
}
.background span:nth-child(2) {
    color: #d8f3f0;
    top: 19%;
    left: 19%;
    animation-duration: 135s;
    animation-delay: -43s;
    transform-origin: -7vw -10vh;
    box-shadow: -100vmin 0 13.34504972192178vmin currentColor;
}
.background span:nth-child(3) {
    color: #cfe9f7;
    top: 83%;
    left: 91%;
    animation-duration: 289s;
    animation-delay: -270s;
    transform-origin: 17vw 16vh;
    box-shadow: 100vmin 0 13.323119530451262vmin currentColor;
}
.background span:nth-child(4) {
    color: #d8f3f0;
    top: 68%;
    left: 50%;
    animation-duration: 313s;
    animation-delay: -340s;
    transform-origin: -21vw -6vh;
    box-shadow: -100vmin 0 13.136313884507095vmin currentColor;
}
.background span:nth-child(5) {
    color: #d8f3f0;
    top: 76%;
    left: 64%;
    animation-duration: 270s;
    animation-delay: -81s;
    transform-origin: 17vw -3vh;
    box-shadow: -100vmin 0 12.618410517641347vmin currentColor;
}
.background span:nth-child(6) {
    color: #d8f3f0;
    top: 94%;
    left: 79%;
    animation-duration: 148s;
    animation-delay: -49s;
    transform-origin: -2vw 24vh;
    box-shadow: 100vmin 0 12.933758912264189vmin currentColor;
}
.background span:nth-child(7) {
    color: #d8f3f0;
    top: 13%;
    left: 87%;
    animation-duration: 91s;
    animation-delay: -370s;
    transform-origin: 13vw -13vh;
    box-shadow: 100vmin 0 13.464975308476665vmin currentColor;
}
.background span:nth-child(8) {
    color: #d8f3f0;
    top: 8%;
    left: 89%;
    animation-duration: 119s;
    animation-delay: -157s;
    transform-origin: 7vw 25vh;
    box-shadow: -100vmin 0 13.249492017531725vmin currentColor;
}
.background span:nth-child(9) {
    color: #cfe9f7;
    top: 59%;
    left: 71%;
    animation-duration: 65s;
    animation-delay: -200s;
    transform-origin: -7vw 12vh;
    box-shadow: -100vmin 0 13.146523836644892vmin currentColor;
}
.background span:nth-child(10) {
    color: #d8f3f0;
    top: 18%;
    left: 31%;
    animation-duration: 306s;
    animation-delay: -93s;
    transform-origin: 1vw 21vh;
    box-shadow: 100vmin 0 13.386058679472992vmin currentColor;
}
.background span:nth-child(11) {
    color: #d8f3f0;
    top: 67%;
    left: 12%;
    animation-duration: 260s;
    animation-delay: -187s;
    transform-origin: -5vw 3vh;
    box-shadow: 100vmin 0 12.95407960794646vmin currentColor;
}
.background span:nth-child(12) {
    color: #d8f3f0;
    top: 44%;
    left: 53%;
    animation-duration: 319s;
    animation-delay: -131s;
    transform-origin: -23vw -19vh;
    box-shadow: 100vmin 0 12.68281945401693vmin currentColor;
}
.background span:nth-child(13) {
    color: #cfe9f7;
    top: 75%;
    left: 82%;
    animation-duration: 227s;
    animation-delay: -52s;
    transform-origin: 14vw -22vh;
    box-shadow: -100vmin 0 12.656564123066081vmin currentColor;
}
.background span:nth-child(14) {
    color: #cfe9f7;
    top: 70%;
    left: 88%;
    animation-duration: 261s;
    animation-delay: -362s;
    transform-origin: -24vw 21vh;
    box-shadow: 100vmin 0 12.867914982630133vmin currentColor;
}
.background span:nth-child(15) {
    color: #cfe9f7;
    top: 17%;
    left: 88%;
    animation-duration: 111s;
    animation-delay: -315s;
    transform-origin: 2vw 13vh;
    box-shadow: -100vmin 0 12.721114557003675vmin currentColor;
}
.background span:nth-child(16) {
    color: #cfe9f7;
    top: 24%;
    left: 56%;
    animation-duration: 346s;
    animation-delay: -23s;
    transform-origin: 2vw 7vh;
    box-shadow: 100vmin 0 13.351412232989823vmin currentColor;
}
.background span:nth-child(17) {
    color: #d8f3f0;
    top: 87%;
    left: 46%;
    animation-duration: 188s;
    animation-delay: -259s;
    transform-origin: -16vw 14vh;
    box-shadow: -100vmin 0 12.913671892852841vmin currentColor;
}
.background span:nth-child(18) {
    color: #cfe9f7;
    top: 16%;
    left: 33%;
    animation-duration: 176s;
    animation-delay: -209s;
    transform-origin: -1vw -20vh;
    box-shadow: 100vmin 0 13.16114637697875vmin currentColor;
}
.background span:nth-child(19) {
    color: #cfe9f7;
    top: 56%;
    left: 10%;
    animation-duration: 363s;
    animation-delay: -270s;
    transform-origin: -5vw -6vh;
    box-shadow: 100vmin 0 13.311942054449789vmin currentColor;
}
.background span:nth-child(20) {
    color: #d8f3f0;
    top: 52%;
    left: 76%;
    animation-duration: 194s;
    animation-delay: -98s;
    transform-origin: 23vw 1vh;
    box-shadow: 100vmin 0 13.37149841692164vmin currentColor;
}
.background span:nth-child(21) {
    color: #d8f3f0;
    top: 44%;
    left: 64%;
    animation-duration: 347s;
    animation-delay: -355s;
    transform-origin: 13vw 2vh;
    box-shadow: -100vmin 0 12.709066490434028vmin currentColor;
}
.background span:nth-child(22) {
    color: #cfe9f7;
    top: 17%;
    left: 10%;
    animation-duration: 294s;
    animation-delay: -371s;
    transform-origin: 14vw 5vh;
    box-shadow: 100vmin 0 13.257146313962036vmin currentColor;
}
.background span:nth-child(23) {
    color: #cfe9f7;
    top: 9%;
    left: 79%;
    animation-duration: 191s;
    animation-delay: -45s;
    transform-origin: 10vw -9vh;
    box-shadow: -100vmin 0 12.705386086377532vmin currentColor;
}
.background span:nth-child(24) {
    color: #cfe9f7;
    top: 43%;
    left: 65%;
    animation-duration: 35s;
    animation-delay: -373s;
    transform-origin: -20vw -6vh;
    box-shadow: 100vmin 0 13.388712703917692vmin currentColor;
}
.background span:nth-child(25) {
    color: #cfe9f7;
    top: 38%;
    left: 55%;
    animation-duration: 107s;
    animation-delay: -198s;
    transform-origin: -18vw 4vh;
    box-shadow: -100vmin 0 13.466830956703456vmin currentColor;
}
.background span:nth-child(26) {
    color: #cfe9f7;
    top: 20%;
    left: 61%;
    animation-duration: 365s;
    animation-delay: -380s;
    transform-origin: -12vw -1vh;
    box-shadow: 100vmin 0 13.137627479006241vmin currentColor;
}
.background span:nth-child(27) {
    color: #d8f3f0;
    top: 51%;
    left: 13%;
    animation-duration: 14s;
    animation-delay: -372s;
    transform-origin: -9vw 4vh;
    box-shadow: -100vmin 0 13.07182303610957vmin currentColor;
}
.background span:nth-child(28) {
    color: #d8f3f0;
    top: 27%;
    left: 89%;
    animation-duration: 248s;
    animation-delay: -375s;
    transform-origin: 22vw 16vh;
    box-shadow: 100vmin 0 12.776382512319948vmin currentColor;
}
.background span:nth-child(29) {
    color: #d8f3f0;
    top: 85%;
    left: 29%;
    animation-duration: 347s;
    animation-delay: -241s;
    transform-origin: 18vw -21vh;
    box-shadow: 100vmin 0 13.472998471419357vmin currentColor;
}
.background span:nth-child(30) {
    color: #d8f3f0;
    top: 47%;
    left: 49%;
    animation-duration: 48s;
    animation-delay: -2s;
    transform-origin: 8vw 17vh;
    box-shadow: 100vmin 0 13.140892379616904vmin currentColor;
}
.background span:nth-child(31) {
    color: #d8f3f0;
    top: 45%;
    left: 69%;
    animation-duration: 131s;
    animation-delay: -140s;
    transform-origin: -6vw 18vh;
    box-shadow: 100vmin 0 13.293140786150298vmin currentColor;
}
.background span:nth-child(32) {
    color: #d8f3f0;
    top: 5%;
    left: 90%;
    animation-duration: 138s;
    animation-delay: -209s;
    transform-origin: 11vw 20vh;
    box-shadow: 100vmin 0 13.236570688384983vmin currentColor;
}
.background span:nth-child(33) {
    color: #d8f3f0;
    top: 11%;
    left: 64%;
    animation-duration: 288s;
    animation-delay: -244s;
    transform-origin: -21vw -23vh;
    box-shadow: -100vmin 0 13.393274003916991vmin currentColor;
}
.background span:nth-child(34) {
    color: #d8f3f0;
    top: 8%;
    left: 21%;
    animation-duration: 255s;
    animation-delay: -171s;
    transform-origin: 14vw 12vh;
    box-shadow: -100vmin 0 13.136656740574521vmin currentColor;
}
.background span:nth-child(35) {
    color: #cfe9f7;
    top: 32%;
    left: 9%;
    animation-duration: 65s;
    animation-delay: -212s;
    transform-origin: -18vw 0vh;
    box-shadow: 100vmin 0 13.182876071218558vmin currentColor;
}