:root {
  --bg: #160228;
  --bg-alt: #220340;
  --surface: #2e0850;
  --surface-soft: rgba(46, 8, 80, 0.72);
  --ink: #fff0ff;
  --ink-muted: #d8b4fe;
  --line: rgba(220, 130, 255, 0.28);
  --accent: #ff0090;       /* hot pink / magenta */
  --accent-2: #a8ff00;     /* neon lime groen */
  --accent-3: #ffe600;     /* vivid geel */
  --ok: #a8ff00;
  --radius: 18px;
  --shadow: 0 14px 36px rgba(0, 0, 0, 0.5);
  --rainbow: linear-gradient(90deg,
    #ff0080 0%, #ff6600 18%, #ffe000 35%,
    #00d46a 50%, #00c8ff 68%, #9b00ff 85%, #ff0080 100%);
}

* {
  box-sizing: border-box;
}

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

/* ── Rainbow topbar ── */
.rainbow-topbar {
  height: 5px;
  background: var(--rainbow);
  background-size: 200% 100%;
  animation: rainbowShift 3s linear infinite;
}

body {
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 12%, rgba(255, 0, 144, 0.28), transparent 36%),
    radial-gradient(circle at 88% 8%,  rgba(168, 255, 0, 0.18), transparent 32%),
    radial-gradient(circle at 50% 90%, rgba(155, 0, 255, 0.22), transparent 40%),
    linear-gradient(160deg, var(--bg), var(--bg-alt) 50%, #1a013a 100%);
  line-height: 1.55;
}

.bg-glow {
  position: fixed;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  filter: blur(64px);
  z-index: -1;
  opacity: 0.38;
}

.bg-glow-left {
  background: #ff0090;
  top: -80px;
  left: -120px;
}

.bg-glow-right {
  background: #9b00ff;
  right: -140px;
  top: 26vh;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(14px);
  background: rgba(22, 2, 40, 0.82);
  border-bottom: 2px solid transparent;
  background-clip: padding-box;
  box-shadow: 0 1px 0 0 rgba(255, 0, 144, 0.5);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
}

.brand {
  text-decoration: none;
  display: inline-flex;
  flex-direction: column;
  color: var(--ink);
}

.brand-kicker {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-2);
}

.brand-main {
  font-family: "Oswald", sans-serif;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--rainbow);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 100%;
  animation: rainbowShift 4s linear infinite;
}

.nav-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.nav-list a {
  display: inline-block;
  text-decoration: none;
  color: var(--ink-muted);
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: 220ms ease;
}

.nav-list a:hover,
.nav-list a.active {
  color: var(--ink);
  border-color: rgba(255, 0, 144, 0.55);
  background: rgba(255, 0, 144, 0.12);
}

/* ── Video Hero ── */
.video-hero {
  position: relative;
  height: 100vh;
  min-height: 520px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.video-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.video-hero-bg iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  /* keeps 16:9 and always covers the viewport */
  width: max(100%, 177.78vh);
  height: max(100%, 56.25vw);
  transform: translate(-50%, -50%);
  border: 0;
}

.video-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 40%, rgba(255, 0, 144, 0.35), transparent 52%),
    radial-gradient(ellipse at 85% 55%, rgba(155, 0, 255, 0.3), transparent 52%),
    radial-gradient(ellipse at 50% 100%, rgba(168, 255, 0, 0.15), transparent 45%),
    linear-gradient(180deg, rgba(22, 2, 40, 0.45) 0%, rgba(22, 2, 40, 0.65) 60%, rgba(22, 2, 40, 0.93) 100%);
}

.video-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 20px;
  animation: rise 800ms ease-out both;
}

.hero-kicker {
  margin: 0 0 12px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: var(--rainbow);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 100%;
  animation: rainbowShift 3s linear infinite;
}

.video-hero-content h1 {
  margin: 0;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: clamp(3rem, 10vw, 7rem);
  line-height: 1;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.7);
}

.hero-sub {
  margin: 18px auto 0;
  color: var(--ink-muted);
  max-width: 58ch;
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  line-height: 1.6;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.video-hero-content .hero-actions {
  margin-top: 28px;
  justify-content: center;
}

.video-hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(184, 199, 230, 0.7);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  animation: scrollBounce 2.2s ease-in-out infinite;
}

.scroll-chevron {
  width: 18px;
  height: 18px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
}

@keyframes scrollBounce {
  0%, 100% { opacity: 0.7; transform: translateX(-50%) translateY(0); }
  50% { opacity: 1; transform: translateX(-50%) translateY(8px); }
}

/* ── legacy hero (kept for other pages if needed) ── */
.hero {
  padding: 72px 0 36px;
  display: grid;
  gap: 28px;
  grid-template-columns: 1.15fr 1fr;
  align-items: center;
}

.hero-copy {
  animation: rise 680ms ease-out both;
}

.hero-copy h1 {
  margin: 0;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: clamp(2.2rem, 5vw, 4.1rem);
  line-height: 1.02;
}

.hero-copy p {
  margin: 14px 0 0;
  color: var(--ink-muted);
  max-width: 60ch;
}

.hero-actions {
  margin-top: 22px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn {
  text-decoration: none;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 700;
  display: inline-block;
  transition: 220ms ease;
}

.btn-primary {
  background: linear-gradient(120deg, var(--accent), #ff6ac0, #d400ff);
  color: #fff;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

.btn-secondary {
  color: var(--ink);
  border: 1px solid rgba(255, 0, 144, 0.5);
  background: rgba(255, 0, 144, 0.08);
}

.btn:hover {
  transform: translateY(-2px);
}

.panel {
  border: 1px solid rgba(220, 80, 255, 0.3);
  border-radius: var(--radius);
  background: var(--surface-soft);
  box-shadow: var(--shadow);
}

.video-card {
  overflow: hidden;
  animation: rise 820ms 90ms ease-out both;
}

.video-card iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  display: block;
}

.section {
  padding: 24px 0 8px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.feature {
  padding: 18px;
}

.feature h3 {
  margin: 0;
  font-size: 1.12rem;
}

.feature p {
  margin: 10px 0 0;
  color: var(--ink-muted);
}

.section-title {
  margin: 0 0 14px;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: linear-gradient(90deg, var(--accent) 0%, #d400ff 60%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-intro {
  padding: 42px 0 8px;
}

.page-intro h1 {
  margin: 0;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.page-intro p {
  color: var(--ink-muted);
  margin: 10px 0 0;
  max-width: 70ch;
}

.party-highlight {
  padding: 22px;
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 209, 102, 0.2), transparent 34%),
    radial-gradient(circle at 88% 100%, rgba(49, 211, 198, 0.2), transparent 30%),
    rgba(11, 19, 33, 0.78);
}

.party-highlight-head h2 {
  margin: 4px 0 8px;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.party-highlight-head p {
  margin: 0;
  color: var(--ink-muted);
}

.party-kicker {
  display: inline-block;
  margin: 0;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(120deg, var(--accent), #d400ff);
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

.party-gallery {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.party-shot {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid var(--line);
  text-decoration: none;
}

.party-shot img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: transform 260ms ease;
}

.party-shot span {
  position: absolute;
  left: 10px;
  bottom: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #fff;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.6);
}

.party-shot:hover img {
  transform: scale(1.05);
}

.party-highlight-actions {
  margin-top: 14px;
}

.stack {
  display: grid;
  gap: 14px;
}

.card {
  padding: 20px;
}

.card h2,
.card h3 {
  margin-top: 0;
}

.media-thumb-link {
  display: block;
  margin-bottom: 12px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.media-thumb {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 220ms ease;
}

.media-thumb-link:hover .media-thumb {
  transform: scale(1.03);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.quote-form {
  display: grid;
  gap: 16px;
}

.quote-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 16px;
  align-items: start;
}

.form-panel {
  background: rgba(9, 15, 28, 0.62);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
}

.form-panel-title {
  margin: 0 0 12px;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 1.18rem;
}

.compact-grid {
  gap: 10px 12px;
}

.form-actions {
  display: flex;
  justify-content: flex-end;
}

.form-full {
  grid-column: 1 / -1;
}

label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  background: rgba(6, 10, 20, 0.55);
  color: var(--ink);
  border-radius: 12px;
  padding: 11px 12px;
  font: inherit;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

.notice {
  margin-bottom: 14px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(126, 231, 135, 0.4);
  background: rgba(126, 231, 135, 0.12);
  color: #c8ffd5;
}

.notice-error {
  border-color: rgba(255, 122, 24, 0.45);
  background: rgba(255, 122, 24, 0.15);
  color: #ffe0cc;
}

.required-mark {
  color: var(--accent-3);
  font-weight: 800;
}

.field-help {
  margin: 0 0 10px;
  color: var(--ink-muted);
}

.checkbox-grid {
  padding: 14px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px 14px;
}

.checkbox-grid.error {
  border-color: rgba(255, 122, 24, 0.7);
}

.checkbox-option {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.25;
  font-weight: 600;
  color: var(--ink);
}

.checkbox-option input[type="checkbox"] {
  width: 20px;
  height: 20px;
  min-width: 20px;
  margin: 0;
  accent-color: var(--accent);
  border-radius: 6px;
}

.music-style-error {
  margin: 8px 0 0;
  color: #ffd0b2;
  font-weight: 700;
}

.site-footer {
  margin-top: 48px;
  border-top: 2px solid transparent;
  background: rgba(10, 2, 22, 0.85);
  padding: 24px 0 16px;
  position: relative;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--rainbow);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 20px;
}

.site-footer h3,
.site-footer h4 {
  margin: 0;
}

.site-footer p,
.site-footer a,
.site-footer li {
  color: var(--ink-muted);
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  display: grid;
  gap: 8px;
}

.site-footer a {
  text-decoration: none;
}

.legal {
  margin-top: 18px;
  border-top: 1px solid var(--line);
  padding-top: 12px;
}

/* ── Stats strip ── */
.stats-strip {
  background: linear-gradient(90deg,
    rgba(255, 0, 128, 0.18) 0%,
    rgba(155, 0, 255, 0.18) 50%,
    rgba(0, 200, 255, 0.14) 100%);
  border-top: 2px solid transparent;
  border-bottom: 2px solid transparent;
  padding: 22px 0;
  position: relative;
}
.stats-strip::before,
.stats-strip::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 2px;
  background: var(--rainbow);
}
.stats-strip::before { top: 0; }
.stats-strip::after  { bottom: 0; }

.stats-row {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 16px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}

.stat-number {
  font-family: "Oswald", sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent), #d400ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--line);
  flex-shrink: 0;
}

/* ── Section eyebrow ── */
.section-eyebrow {
  margin: 0 0 6px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-2);
  text-shadow: 0 0 12px rgba(168, 255, 0, 0.5);
}

/* ── Feature hover & icon ── */
.feature-hover {
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.feature-hover:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 0, 144, 0.6);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5), 0 0 24px rgba(255, 0, 144, 0.25);
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 10px;
  line-height: 1;
}

/* ── Quote strip ── */
.quote-strip {
  margin: 16px 0;
  padding: 36px 0;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(255, 0, 144, 0.18), transparent 60%),
    rgba(22, 2, 40, 0.7);
  border-top: 2px solid transparent;
  border-bottom: 2px solid transparent;
  position: relative;
}
.quote-strip::before,
.quote-strip::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 2px;
  background: var(--rainbow);
}
.quote-strip::before { top: 0; }
.quote-strip::after  { bottom: 0; }

.big-quote {
  margin: 0;
  text-align: center;
}

.big-quote p {
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-size: clamp(1.5rem, 4vw, 2.6rem);
  letter-spacing: 0.02em;
  font-style: normal;
  background: linear-gradient(90deg, var(--accent) 0%, #d400ff 50%, var(--accent-3) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.big-quote footer {
  margin-top: 12px;
  font-size: 0.88rem;
  color: var(--ink-muted);
  font-style: italic;
}

/* ── Services grid ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 220ms ease, border-color 220ms ease;
}

.service-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 0, 144, 0.55);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 0, 144, 0.2);
}

.service-card-top {
  display: flex;
  align-items: center;
  gap: 14px;
}

.service-icon {
  font-size: 2rem;
  line-height: 1;
  flex-shrink: 0;
}

.service-card h3 {
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: linear-gradient(90deg, var(--accent), #d400ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.service-card p {
  margin: 0;
  color: var(--ink-muted);
  flex-grow: 1;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.88rem;
  align-self: flex-start;
}

/* ── Card accent / tag ── */
.card-accent {
  background:
    radial-gradient(circle at 90% 10%, rgba(255, 0, 144, 0.2), transparent 45%),
    var(--surface-soft);
}

.card-tag {
  display: inline-block;
  margin-bottom: 10px;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(120deg, var(--accent), #d400ff);
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

/* ── CTA strip ── */
.cta-strip {
  margin: 32px 0 0;
  padding: 36px 0;
  background:
    radial-gradient(ellipse at 10% 50%, rgba(255, 0, 144, 0.25), transparent 55%),
    radial-gradient(ellipse at 90% 50%, rgba(155, 0, 255, 0.22), transparent 55%),
    rgba(22, 2, 40, 0.8);
  border-top: 2px solid transparent;
  border-bottom: 2px solid transparent;
  position: relative;
}
.cta-strip::before,
.cta-strip::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 2px;
  background: var(--rainbow);
}
.cta-strip::before { top: 0; }
.cta-strip::after  { bottom: 0; }

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cta-text h2 {
  margin: 0 0 6px;
  font-family: "Oswald", sans-serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.cta-text p {
  margin: 0;
  color: var(--ink-muted);
}

.cta-inner .hero-actions {
  margin-top: 0;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes rainbowShift {
  0%   { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

/* ── Tijdlijn ── */
.timeline {
  display: grid;
  gap: 0;
  position: relative;
  padding-left: 32px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 10px;
  top: 12px;
  bottom: 12px;
  width: 3px;
  background: var(--rainbow);
  background-size: 100% 400%;
  animation: rainbowShift 4s linear infinite;
  border-radius: 4px;
}

.timeline-item {
  position: relative;
  padding: 0 0 28px 24px;
}

.timeline-dot {
  position: absolute;
  left: -28px;
  top: 14px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #d400ff);
  box-shadow: 0 0 12px rgba(255, 0, 144, 0.6);
  border: 3px solid var(--bg);
}

.timeline-year {
  display: inline-block;
  margin-bottom: 10px;
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: linear-gradient(120deg, var(--accent), #d400ff);
  color: #fff;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

@media (max-width: 900px) {
  .video-hero {
    min-height: 100svh;
  }

  .hero-sub br {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .party-gallery {
    grid-template-columns: 1fr;
  }

  .grid-3,
  .footer-grid,
  .form-grid,
  .quote-layout,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .stat-divider {
    display: none;
  }

  .stats-row {
    justify-content: center;
    gap: 24px;
  }

  .cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .cta-inner .hero-actions {
    justify-content: center;
  }

  .nav-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .checkbox-grid {
    grid-template-columns: 1fr;
  }

  .form-actions {
    justify-content: stretch;
  }

  .form-actions .btn {
    width: 100%;
    text-align: center;
  }
}
