@font-face {
  font-family: "jf-openhuninn";
  src: url("../font/jf-openhuninn-2.1.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  color-scheme: light;
  --paper: #fffdf0;
  --ink: #171717;
  --pink: #ffcbd3;
  --pink-strong: #c92c56;
  --yellow: #f7e292;
  --blue: #cfe3ff;
  --green: #bff0d6;
  --page-gutter: 64px;
}

@media (max-width: 1023.95px) {
  :root {
    --page-gutter: 40px;
  }
}

@media (max-width: 599.95px) {
  :root {
    --page-gutter: 20px;
  }
}

* {
  box-sizing: border-box;
}
html {
  margin: 0;
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}
body {
  margin: 0;
  /* `hidden` creates a scrolling ancestor and can disable the sticky navbar. */
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: "jf-openhuninn", sans-serif;
  width: 100%;
  max-width: 100%;
}
body.pv-is-open,
body.academy-is-open,
body.meme-is-open {
  overflow: hidden;
}

body.pv-is-open {
  height: 100dvh;
}

.academy-modal {
  --academy-modal-padding: 28px;
  --academy-modal-paper-width: min(620px, calc(100vw - 40px));
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  padding: var(--academy-modal-padding);
}
.academy-modal[hidden] {
  display: none;
}
.academy-modal:focus {
  outline: none;
}
.academy-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgb(36 26 27 / 78%);
  backdrop-filter: blur(2px);
}
.academy-modal__paper {
  position: relative;
  z-index: 1;
  width: var(--academy-modal-paper-width);
  max-height: calc(100dvh - 48px);
  overflow-y: auto;
  padding: clamp(34px, 6vw, 54px) clamp(26px, 7vw, 66px) 36px;
  border: 3px solid #241a1b;
  background:
    repeating-linear-gradient(
      transparent 0,
      transparent 31px,
      rgb(85 151 181 / 17%) 32px,
      transparent 33px
    ),
    #fffdf3;
  box-shadow: 9px 11px 0 #241a1b, 0 30px 80px rgb(0 0 0 / 40%);
  text-align: center;
  transform: rotate(-0.35deg);
  animation: academy-modal-enter 280ms cubic-bezier(0.2, 0.82, 0.24, 1) both;
}
.academy-modal__paper::before {
  content: none;
}
.academy-modal__paper h2 {
  margin: 0 0 28px;
  padding-bottom: 10px;
  border-bottom: 2px solid #2e657a;
  font-size: clamp(25px, 5vw, 34px);
  line-height: 1.25;
}
.academy-modal__copy {
  font-size: clamp(16px, 2.6vw, 18px);
  line-height: 1.8;
}
.academy-modal__copy p {
  margin: 0 0 18px;
}
.academy-modal__copy a {
  color: #a8173a;
  font-weight: 700;
  text-underline-offset: 4px;
}
.academy-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 2px solid #241a1b;
  background: #fff0ad;
  box-shadow: 3px 3px 0 #241a1b;
  color: #a8173a;
  cursor: pointer;
}
.academy-modal__close::before,
.academy-modal__close::after {
  content: "";
  position: absolute;
  top: 18px;
  left: 7px;
  width: 25px;
  height: 3px;
  background: currentColor;
}
.academy-modal__close::before { transform: rotate(45deg); }
.academy-modal__close::after { transform: rotate(-45deg); }
.academy-modal__close:hover { background: #f4d66c; }
.academy-modal__more {
  display: table;
  margin: 30px auto 0;
  padding: 10px 17px;
  border: 2px solid #241a1b;
  background: #f7ccda;
  box-shadow: 3px 3px 0 #241a1b;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  transition: transform 150ms ease, box-shadow 150ms ease;
}
.academy-modal__more:hover {
  transform: translate(2px, 2px);
  box-shadow: 1px 1px 0 #241a1b;
}
.academy-modal__more--president {
  margin-top: 16px;
  background: #fff0ad;
}
.academy-modal__close:focus-visible,
.academy-modal__copy a:focus-visible,
.academy-modal__more:focus-visible {
  outline: 3px solid #d32958;
  outline-offset: 4px;
}
@keyframes academy-modal-enter {
  from { opacity: 0; transform: translateY(16px) scale(0.97) rotate(-0.35deg); }
  to { opacity: 1; transform: rotate(-0.35deg); }
}
@media (max-width: 540px) {
  .academy-modal {
    --academy-modal-padding: 18px;
    --academy-modal-paper-width: calc(100vw - 28px);
  }
  .academy-modal__paper {
    padding: 58px 24px 28px;
  }
  .academy-modal__paper h2 { margin-bottom: 22px; }
}
@media (prefers-reduced-motion: reduce) {
  .academy-modal__paper { animation: none; }
}

.meme-modal {
  position: fixed;
  inset: 0;
  z-index: 10001;
  display: grid;
  place-items: center;
  padding: clamp(18px, 5vw, 48px);
}
.meme-modal[hidden] {
  display: none;
}
.meme-modal:focus {
  outline: none;
}
.meme-modal__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgb(24 24 24 / 78%);
  backdrop-filter: blur(2px);
  cursor: pointer;
}
.meme-modal__paper {
  position: relative;
  z-index: 1;
  width: min(520px, calc(100vw - 36px));
  max-height: calc(100dvh - 44px);
  padding: clamp(14px, 3vw, 22px);
  border: 3px solid #241a1b;
  background: #fff8df;
  box-shadow: 8px 10px 0 #241a1b, 0 24px 68px rgb(0 0 0 / 38%);
  transform: rotate(-0.45deg);
  animation: meme-modal-enter 220ms cubic-bezier(0.2, 0.82, 0.24, 1) both;
}
.meme-modal__paper::before {
  content: "";
  position: absolute;
  top: -14px;
  left: 50%;
  width: 92px;
  height: 25px;
  transform: translateX(-50%) rotate(2deg);
  border: 1px solid rgb(29 28 21 / 10%);
  background: rgb(255 255 255 / 62%);
}
.meme-modal__viewer {
  position: relative;
  display: grid;
  place-items: center;
  touch-action: pan-y;
  user-select: none;
}
.meme-modal__viewer img {
  width: 100%;
  max-height: calc(100dvh - 154px);
  object-fit: contain;
  border: 2px solid rgb(29 28 21 / 12%);
  background: #fffdf0;
  transition: opacity 140ms ease, transform 180ms ease;
  -webkit-user-drag: none;
}
.meme-modal__viewer.is-switching img {
  opacity: 0.58;
  transform: scale(0.985);
}
.meme-modal__nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0;
  place-items: center;
  border: 2px solid #241a1b;
  border-radius: 2px;
  background: rgb(255 240 173 / 94%);
  box-shadow: 3px 3px 0 #241a1b;
  color: #a8173a;
  line-height: 1;
  cursor: pointer;
  transition: background 140ms ease, box-shadow 140ms ease, transform 140ms ease;
  transform: translateY(-50%);
}
.meme-modal__nav span {
  display: block;
  width: 13px;
  height: 13px;
  border-bottom: 4px solid currentColor;
  border-left: 4px solid currentColor;
  font-size: 0;
  transform: rotate(45deg);
}
.meme-modal__nav--next span { transform: rotate(225deg); }
.meme-modal__nav--previous { left: 12px; }
.meme-modal__nav--next { right: 12px; }
.meme-modal__nav[hidden],
.meme-modal__status[hidden] {
  display: none;
}
.meme-modal__nav:hover {
  background: #f4d66c;
  box-shadow: 2px 2px 0 #241a1b;
  transform: translate(2px, calc(-50% + 2px));
}
.meme-modal__nav:active {
  box-shadow: 1px 1px 0 #241a1b;
  transform: translate(3px, calc(-50% + 3px));
}
.meme-modal__progress {
  position: relative;
  height: 8px;
  margin: 10px 4px 0;
  overflow: hidden;
  border: 2px solid #241a1b;
  border-radius: 999px;
  background: #fff0ad;
}
.meme-modal__progress[hidden] {
  display: none;
}
.meme-modal__progress span {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  transform-origin: left center;
  background: linear-gradient(90deg, #d32958, #f4d66c);
  animation: meme-carousel-countdown 3000ms linear forwards;
}
.meme-modal__progress.is-resetting span {
  animation: none;
}
.meme-modal__status {
  display: flex;
  min-height: 22px;
  margin: 10px 0 -6px;
  align-items: center;
  justify-content: center;
  gap: 9px;
}
.meme-modal__dot {
  width: 11px;
  height: 11px;
  padding: 0;
  border: 2px solid #241a1b;
  border-radius: 50%;
  background: #fff0ad;
  cursor: pointer;
  transition: background 140ms ease, transform 140ms ease;
}
.meme-modal__dot:hover { background: #f4d66c; transform: scale(1.2); }
.meme-modal__dot.is-active {
  background: #d32958;
  box-shadow: 0 0 0 3px rgb(211 41 88 / 18%);
  transform: scale(1.25);
}
.meme-modal__close {
  position: absolute;
  top: -18px;
  right: -18px;
  z-index: 2;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 2px solid #241a1b;
  background: #fff0ad;
  box-shadow: 3px 3px 0 #241a1b;
  color: #a8173a;
  cursor: pointer;
}
.meme-modal__close::before,
.meme-modal__close::after {
  content: "";
  position: absolute;
  top: 19px;
  left: 8px;
  width: 25px;
  height: 3px;
  border-radius: 99px;
  background: currentColor;
}
.meme-modal__close::before { transform: rotate(45deg); }
.meme-modal__close::after { transform: rotate(-45deg); }
.meme-modal__close:hover {
  background: #f4d66c;
}
.meme-modal__close:focus-visible,
.meme-modal__backdrop:focus-visible,
.meme-modal__nav:focus-visible {
  outline: 3px solid #d32958;
  outline-offset: 4px;
}
.meme-modal__dot:focus-visible {
  outline: 3px solid #d32958;
  outline-offset: 3px;
}
@keyframes meme-modal-enter {
  from { opacity: 0; transform: translateY(12px) scale(0.98) rotate(-0.45deg); }
  to { opacity: 1; transform: rotate(-0.45deg); }
}
@keyframes meme-carousel-countdown {
  from { transform: scaleX(1); }
  to { transform: scaleX(0); }
}
@media (max-width: 540px) {
  .meme-modal__close {
    top: -14px;
    right: -8px;
  }
  .meme-modal__nav {
    width: 40px;
    height: 40px;
  }
  .meme-modal__nav--previous { left: 8px; }
  .meme-modal__nav--next { right: 8px; }
}
@media (prefers-reduced-motion: reduce) {
  .meme-modal__paper { animation: none; }
  .meme-modal__viewer img,
  .meme-modal__nav,
  .meme-modal__dot { transition: none; }
}

.pv-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  min-height: 100vh;
  min-height: 100dvh;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: clamp(64px, 8vh, 108px) clamp(20px, 5vw, 80px);
  opacity: 1;
  visibility: visible;
  transition:
    opacity 360ms ease,
    visibility 0s linear 0s;
}
.pv-modal.is-closing {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 360ms ease,
    visibility 0s linear 360ms;
}
.pv-modal[hidden] {
  display: none;
}
.pv-modal:focus {
  outline: none;
}
.pv-modal__backdrop {
  position: absolute;
  inset: 0;
  background: #000;
  opacity: 85%;
}
.pv-modal__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: min(76vw, 1100px);
  min-width: 0;
  margin: 0 auto;
  padding: clamp(22px, 3vw, 38px);
  border: 3px solid #241a1b;
  background: #fff9e9;
  box-shadow:
    10px 12px 0 #241a1b,
    0 32px 90px rgba(35, 0, 9, 0.6);
  transform: rotate(-0.35deg);
  animation: pv-modal-enter 650ms cubic-bezier(0.2, 0.82, 0.24, 1) both;
}
.pv-modal__content::before,
.pv-modal__content::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: -15px;
  width: 92px;
  height: 28px;
  border: 1px solid rgba(91, 42, 28, 0.15);
  background: rgba(255, 205, 119, 0.8);
}
.pv-modal__content::before {
  left: 50%;
  width: 112px;
  transform: translateX(-50%) rotate(-2deg);
}
.pv-modal__content::after {
  display: none;
}
.pv-modal__player {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 3px solid #241a1b;
  border-radius: 0;
  background: #080808;
  box-shadow: 5px 6px 0 rgba(159, 23, 54, 0.22);
}
.pv-modal__player iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-width: 0;
  border: 0;
}
.pv-modal__close {
  position: absolute;
  top: -20px;
  right: -20px;
  z-index: 4;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 3px solid #241a1b;
  background: #fff4d7;
  box-shadow: 4px 4px 0 #241a1b;
  color: #af1739;
  cursor: pointer;
  transition: transform 180ms ease, color 180ms ease;
}
.pv-modal__close::before,
.pv-modal__close::after {
  content: "";
  position: absolute;
  top: 23px;
  left: 9px;
  width: 30px;
  height: 3px;
  border-radius: 99px;
  background: currentColor;
}
.pv-modal__close::before { transform: rotate(45deg); }
.pv-modal__close::after { transform: rotate(-45deg); }
.pv-modal__close:hover {
  background: #f4d66c;
  color: #8e0f2d;
  transform: translate(-2px, -2px) rotate(4deg);
}
.pv-modal__close:focus-visible,
.pv-modal__youtube:focus-visible {
  outline: 3px solid #f6d54e;
  outline-offset: 5px;
}
.pv-modal__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 17px;
}
.pv-modal__footer p {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 0;
  color: #745b5f;
  font-size: 13px;
}
.pv-modal__footer p .material-symbols-outlined { font-size: 18px; }

.hero-pv-trigger {
  position: absolute;
  inset: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.hero-pv-trigger:focus-visible {
  outline: 4px solid var(--pink-strong);
  outline-offset: -6px;
}
.pv-modal__youtube {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  border: 2px solid #241a1b;
  background: #b4173c;
  box-shadow: 3px 3px 0 #241a1b;
  color: #fff;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-decoration: none;
  transition: color 180ms ease;
}
.pv-modal__youtube .material-symbols-outlined {
  font-size: 17px;
}
.pv-modal__youtube:hover { background: #d32650; color: #fff; }
@keyframes pv-modal-enter {
  from { opacity: 0; transform: translateY(18px) scale(0.975); }
  to { opacity: 1; transform: none; }
}
@media (max-width: 1023.95px) {
  .pv-modal {
    padding: 72px 16px 54px;
  }
  .pv-modal__content {
    width: 100%;
    max-width: 720px;
    padding: 18px 14px 16px;
    margin: 0 auto;
  }
  .pv-modal__close {
    top: -17px;
    right: -8px;
  }
  .pv-modal__footer {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
  }
  .pv-modal__youtube {
    align-self: flex-end;
  }
}

@media (max-height: 700px) {
  .pv-modal {
    place-items: start center;
    padding: 28px 16px;
  }

  .pv-modal__content {
    width: min(100%, 1100px);
    margin: auto;
    padding: 14px;
  }

  .pv-modal__player {
    width: min(100%, max(220px, calc(177.78dvh - 340px)));
    margin-inline: auto;
  }

  .pv-modal__close {
    top: -12px;
    right: -8px;
  }
}
a {
  color: inherit;
}
img {
  display: block;
}
.sketch-page img {
  max-width: 100%;
}

.home-stage {
  position: relative;
  width: 100%;
  height: 100svh;
  height: 100dvh;
  min-height: 0;
  overflow: hidden;
  contain: paint;
  isolation: isolate;
  background: #2f2a2b;
}
.home-background {
  position: absolute;
  z-index: 0;
  inset: -18px;
  pointer-events: none;
  background: var(--home-background-image, url("../imgs/main/main.webp")) right
    center / cover no-repeat;
  transform: translate3d(
    calc(var(--home-parallax-x, 0) * 1px),
    calc(var(--home-parallax-y, 0) * 1px),
    0
  );
  will-change: transform;
}
@media (prefers-reduced-motion: reduce) {
  .home-background {
    transform: none !important;
    will-change: auto;
  }
}
.home-stage::after {
  content: "";
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 58.43%;
  pointer-events: none;
  background: linear-gradient(
    0deg,
    rgba(86, 34, 72, 0.62) 0%,
    rgba(178, 73, 111, 0.46) 62%,
    rgba(222, 111, 139, 0) 100%
  );
  opacity: 0;
  clip-path: inset(100% 0 0);
}
.home-artboard {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  width: 1920px;
  height: 1080px;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.logo-motion {
  position: absolute;
  z-index: 5;
  width: 974px;
  height: 719px;
  transform-origin: 50% 50%;
  will-change: transform;
  pointer-events: none;
}
.home-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
}
.home-white-bg {
  position: absolute;
  z-index: 1;
  left: -39.014%;
  top: -19.61%;
  width: 197.125%;
  height: 150.209%;
  max-width: none;
  opacity: 0;
  transform: scale(0.84) rotate(-2deg);
  transform-origin: center;
  pointer-events: none;
  user-select: none;
}
.home-logo {
  position: absolute;
  z-index: 2;
  left: 7%;
  top: 1%;
  width: 85%;
  height: 114%;
  opacity: 0;
  transform: translateY(4%) rotate(-18deg) scale(0.72);
  transform-origin: 51% 53%;
  filter: drop-shadow(0 10px 3px rgba(116, 8, 28, 0.16));
  pointer-events: none;
  user-select: none;
}
.home-vfx {
  position: absolute;
  z-index: 3;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: rotate(-7deg) scale(0.4);
  pointer-events: none;
  user-select: none;
}
.home-pink-vfx {
  z-index: 2;
  top: auto;
  bottom: 0;
  height: 58.43%;
  object-fit: fill;
  object-position: bottom;
  opacity: 0;
  clip-path: inset(100% 0 0 0);
}
.submit-button {
  position: absolute;
  z-index: 6;
  left: 50%;
  top: 76%;
  min-width: 220px;
  padding: 16px 34px;
  border: 3px solid #fff;
  border-radius: 999px;
  background: #ad173c;
  color: #fff;
  font-size: clamp(18px, 1.2vw, 22px);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-align: center;
  text-decoration: none;
  box-shadow:
    0 7px 0 #711024,
    0 12px 24px rgba(60, 0, 13, 0.25);
  opacity: 0;
  transform: translate(-50%, 24px) scale(0.85);
  transition:
    box-shadow 180ms ease,
    background 180ms ease;
}
.submit-button:hover {
  background: #c5204a;
  box-shadow:
    0 9px 0 #711024,
    0 15px 28px rgba(60, 0, 13, 0.3);
}
.submit-button:focus-visible {
  outline: 4px solid #70d6ff;
  outline-offset: 5px;
}
@media (max-width: 599.95px) {
  .home-stage .submit-button {
    top: auto;
    bottom: 88px;
    width: min(400px, calc(100vw - 40px));
    min-width: 0;
  }
}
.home-stage.is-playing {
  background-color: #2f2a2b;
}
.home-stage.is-playing .home-logo {
  animation: logo-enter 1.05s 0.28s cubic-bezier(0.18, 0.9, 0.22, 1.12) forwards;
}
.home-stage.is-playing .home-white-bg {
  animation: backing-enter 0.58s 1.28s cubic-bezier(0.2, 0.86, 0.26, 1.15)
    forwards;
}
.home-stage.is-playing .home-vfx {
  animation: vfx-pop 0.5s 1.32s cubic-bezier(0.15, 1.35, 0.28, 1) forwards;
}
.home-stage.is-playing .home-pink-vfx {
  animation: none;
  opacity: 0;
}
.home-stage.is-playing::after {
  animation: pink-wipe 0.78s 1.58s cubic-bezier(0.2, 0.74, 0.22, 1) forwards;
}
.home-stage.is-playing .submit-button {
  animation: button-enter 0.52s 2.18s cubic-bezier(0.18, 0.9, 0.22, 1.18)
    forwards;
}
.logo-motion.is-hopping {
  animation: logo-hop 0.62s cubic-bezier(0.2, 0.8, 0.3, 1);
}
@keyframes logo-enter {
  0% {
    opacity: 0;
    transform: translateY(4%) rotate(-18deg) scale(0.72);
  }
  68% {
    opacity: 1;
    transform: translateY(-1.5%) rotate(3deg) scale(1.04);
  }
  100% {
    opacity: 1;
    transform: translateY(0) rotate(-8deg) scale(1);
  }
}
@keyframes backing-enter {
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes vfx-pop {
  0% {
    opacity: 0;
    transform: rotate(-7deg) scale(0.4);
  }
  72% {
    opacity: 1;
    transform: rotate(2deg) scale(1.09);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@keyframes pink-wipe {
  0% {
    opacity: 0;
    clip-path: inset(100% 0 0);
  }
  18% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    clip-path: inset(0);
  }
}
@keyframes button-enter {
  to {
    opacity: 1;
    transform: translate(-50%, 0) scale(1);
  }
}
@keyframes logo-hop {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  32% {
    transform: translateY(-10px) scale(1.018);
  }
  58% {
    transform: translateY(3px) scale(0.996);
  }
  80% {
    transform: translateY(-2px) scale(1.006);
  }
}

.about-text {
  font-size: 24px;
}
.sketch-page {
  width: 100%;
  max-width: 100%;
  min-height: 100vh;
  background-color: var(--paper);
  background-image: radial-gradient(rgba(38, 38, 38, 0.4) 0.75px, transparent 0.75px);
  background-size: 30px 30px;
}
/* Styles previously embedded in index.html. */
.hero-pv-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 1292 / 727;
  border: 2px solid var(--ink);
}

.hero-pv-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.rules-muted-note {
  color: #888;
}

.organizer-view__title {
  margin-top: 32px;
  margin-bottom: 16px;
}
