:root {
  color-scheme: only light;
  --bg: #6ac2ee;
  --text: #111111;
  --phone-offset: 0px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

html,
body {
  min-height: 100vh;
  background: var(--bg);
  font-family: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  overflow-x: hidden;
}

.legal-page {
  background: #eeece2;
}

.page-content {
  min-height: 100vh;
  display: grid;
  place-items: start;
  padding: 230px clamp(16px, 6vw, 90px) 60px;
  max-width: 1080px;
  margin: 0 auto;
  text-align: left;
}

.support-page .page-content {
  padding-bottom: 720px;
}

body.legal-page:not(.support-page) .page-content {
  padding-bottom: 320px;
}

  .page-copy {
    display: grid;
    gap: 42px;
  }

.page-content h1 {
  text-align: left;
}

.legal-copy {
  display: grid;
  gap: 30px;
  max-width: 76ch;
  width: 100%;
}

.legal-copy h1 {
  font-family: "Fraunces", "Times New Roman", serif;
  font-size: clamp(2.8rem, 4.4vw, 4.2rem);
  line-height: 1.08;
  font-weight: 500;
  margin-bottom: 14px;
}

.support-page .legal-copy > section:first-child h1 {
  margin-bottom: 34px;
}

.legal-copy h2 {
  font-family: "Fraunces", "Times New Roman", serif;
  font-size: clamp(1.28rem, 1.8vw, 1.75rem);
  line-height: 1.18;
  font-weight: 500;
  margin-bottom: 4px;
}

.legal-copy p,
.legal-copy li {
  font-family: "Söhne", "Sohne", "IBM Plex Sans", "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1.08rem, 1.28vw, 1.26rem);
  line-height: 1.72;
}

.legal-copy p + p {
  margin-top: 14px;
}

.legal-copy ul {
  padding-left: 22px;
  display: grid;
  gap: 8px;
}

.legal-copy section {
  display: grid;
  gap: 10px;
}

.legal-muted {
  opacity: 0.75;
  font-style: italic;
}

.legal-link {
  text-decoration: underline;
  text-underline-offset: 2px;
  color: rgba(8, 37, 61, 0.95);
}

.page-copy .big {
  font-family: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(2.6rem, 4.2vw, 4.4rem);
  line-height: 1.05;
  overflow-wrap: anywhere;
}

.site-header {
  position: absolute;
  top: 32px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: flex-end;
  z-index: 1;
  padding: 0 clamp(16px, 6vw, 90px);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
  font-family: "Space Mono", "Courier New", monospace;
  font-size: 1.14rem;
  letter-spacing: 0.06em;
  color: var(--text);
}

.nav a.active {
  color: var(--text);
  background: rgba(17, 17, 17, 0.08);
  padding: 6px 10px;
  border-radius: 0;
}

.nav a {
  padding: 6px 10px;
}

.desktop-nav-link {
  display: inline-flex;
}

.mobile-more {
  display: none;
}

.mobile-more > summary {
  list-style: none;
  cursor: pointer;
  padding: 6px 10px;
}

.mobile-more > summary::-webkit-details-marker {
  display: none;
}

.mobile-more > summary::marker {
  content: "";
}

.mobile-more.active > summary,
.mobile-more[open] > summary {
  color: var(--text);
  background: transparent;
  border-radius: 0;
}

.mobile-more > summary::after {
  content: " \25BE";
  font-size: 1.12em;
}

.mobile-more[open] > summary::after {
  content: " \25B4";
}

.mobile-more-list {
  display: grid;
  gap: 2px;
  margin-top: 6px;
  padding: 6px;
  background: #ffffff;
  border: 1px solid rgba(17, 17, 17, 0.12);
  min-width: 150px;
}

.mobile-more-list a {
  padding: 6px 10px;
  white-space: nowrap;
}

.mobile-more-list a.active {
  background: rgba(17, 17, 17, 0.08);
}

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(32px, 6vw) minmax(0, 0.9fr);
  align-items: center;
  gap: 0;
  padding: 110px clamp(16px, 6vw, 90px) 60px;
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
}

.hero-copy {
  display: grid;
  gap: 40px;
  justify-items: start;
  text-align: left;
  max-width: 660px;
  justify-self: end;
  grid-column: 1;
  align-self: start;
  margin-top: 140px;
  position: relative;
  z-index: 1;
}

.hero-copy h1 {
  font-family: "Söhne", "Sohne", "IBM Plex Sans", "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.18;
}

.brand {
  font-family: "Fraunces", "Times New Roman", serif;
  text-transform: none;
  font-size: clamp(5rem, 8vw, 9.5rem);
  letter-spacing: 0.01em;
    line-height: 0.95;
}

.brand-mark {
  display: flex;
  align-items: center;
  gap: 20px;
}

.brand-head {
  width: clamp(56px, 8vw, 96px);
  height: auto;
  display: block;
}
.media-stack {
  grid-column: 3;
  align-self: start;
  justify-self: start;
  width: min(70vw, 560px);
  margin-top: 120px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  z-index: 1;
}

.celebration-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.confetti {
  position: absolute;
  width: 44px;
  height: 44px;
  --confetti-thickness: 4px;
  --confetti-gap: 6px;
  background:
    linear-gradient(currentColor 0 0) left center / calc(50% - var(--confetti-gap)) var(--confetti-thickness) no-repeat,
    linear-gradient(currentColor 0 0) right center / calc(50% - var(--confetti-gap)) var(--confetti-thickness) no-repeat,
    linear-gradient(currentColor 0 0) center top / var(--confetti-thickness) calc(50% - var(--confetti-gap)) no-repeat,
    linear-gradient(currentColor 0 0) center bottom / var(--confetti-thickness) calc(50% - var(--confetti-gap)) no-repeat;
  color: #ff6b3d;
  opacity: 0.9;
}

.confetti-lg {
  width: 72px;
  height: 72px;
  --confetti-thickness: 5px;
  --confetti-gap: 10px;
}

.confetti-sm {
  width: 32px;
  height: 32px;
  --confetti-thickness: 3px;
  --confetti-gap: 5px;
}

.confetti-orange {
  color: #ff6b3d;
}

.confetti-blue {
  color: #065f46;
}

.confetti-yellow {
  color: #ffb347;
}

.confetti-a {
  top: 110px;
  left: clamp(16px, 8vw, 140px);
}

.confetti-b {
  top: 150px;
  left: clamp(48px, 14vw, 220px);
}

.confetti-c {
  top: 120px;
  right: clamp(40px, 12vw, 220px);
}

.confetti-d {
  top: 160px;
  right: clamp(16px, 6vw, 120px);
}

.confetti-e {
  top: 35%;
  left: clamp(8px, 4vw, 80px);
}

.confetti-f {
  top: 42%;
  right: clamp(12px, 6vw, 120px);
}

.confetti-g {
  top: 58%;
  left: clamp(24px, 10vw, 200px);
}

.confetti-h {
  top: 64%;
  right: clamp(20px, 8vw, 180px);
}

.confetti-i {
  top: 72%;
  left: clamp(12px, 5vw, 120px);
}

.confetti-j {
  top: 78%;
  right: clamp(18px, 7vw, 160px);
}

.confetti-k {
  top: 86%;
  left: clamp(16px, 6vw, 140px);
}

.confetti-l {
  top: 90%;
  right: clamp(10px, 5vw, 130px);
}

.confetti-m {
  top: 52%;
  left: clamp(34vw, 40vw, 46vw);
}

.confetti-n {
  top: 58%;
  left: clamp(38vw, 44vw, 50vw);
}

.phone {
  width: 100%;
  aspect-ratio: 695 / 1358;
  position: relative;
  display: block;
}

.phone-video {
  position: absolute;
  left: 4.75%;
  top: 1.84%;
  width: 91.51%;
  height: 96.24%;
  object-fit: cover;
  object-position: center top;
  border-radius: 34px;
}

.phone-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
}


.audio-player {
  width: 100%;
  max-width: 440px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 32px 12px 24px;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  font-family: "Fraunces", "Times New Roman", serif;
}

.audio-element {
  display: none;
}

.audio-play {
  width: 32px;
  height: 32px;
  border-radius: 0;
  border: none;
  background: transparent;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex: 0 0 auto;
  padding: 0;
}

.audio-icon {
  width: 26px;
  height: 26px;
  fill: currentColor;
  display: block;
  margin-left: 2px;
}

.audio-icon-pause {
  display: none;
}

.audio-waveform {
  width: 120px;
  height: 24px;
  display: none;
  flex: 0 0 auto;
  color: var(--text);
  opacity: 0.55;
}

.audio-waveform rect {
  fill: currentColor;
}

.audio-player.is-playing .audio-icon-play {
  display: none;
}

.audio-player.is-playing .audio-icon-pause {
  display: block;
}

.audio-track {
  position: relative;
  flex: 1;
  height: 20px;
  display: grid;
  align-items: center;
  padding-right: 10px;
}

.audio-track::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 6px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.25);
}

.audio-progress {
  position: absolute;
  left: 0;
  height: 6px;
  top: 50%;
  transform: translateY(-50%);
  width: 0%;
  border-radius: 999px;
  background: var(--text);
}

.audio-range {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 20px;
  appearance: none;
  background: transparent;
  margin: 0;
  cursor: pointer;
}

.audio-range::-webkit-slider-runnable-track {
  height: 6px;
  background: transparent;
}

.audio-range::-webkit-slider-thumb {
  appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--text);
  border: 0;
  margin-top: -4px;
}

.audio-range::-moz-range-track {
  height: 6px;
  background: transparent;
}

.audio-range::-moz-range-thumb {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--text);
  border: 0;
}

  .audio-time {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.95rem;
  color: rgba(17, 17, 17, 0.8);
  min-width: 96px;
  justify-content: flex-end;
  padding-right: 10px;
  margin-left: 16px;
}

.audio-separator {
  opacity: 0.6;
}

.walker {
  grid-column: 1 / -1;
  justify-self: center;
  width: min(80vw, 520px);
  aspect-ratio: 4 / 3;
  margin-top: 40px;
  margin-bottom: 120px;
}



h1 {
  font-family: "Fraunces", "Times New Roman", serif;
  font-size: clamp(2.1rem, 3.5vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: 0.01em;
  text-wrap: balance;
  text-align: left;
  overflow-wrap: normal;
  font-weight: 400;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 26px 36px;
  border-radius: 999px;
  background: var(--text);
  color: #ffffff;
  font-family: "Fraunces", "Times New Roman", serif;
  font-size: 1.3rem;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: none;
  white-space: nowrap;
  justify-self: start;
}

.app-store-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 34px;
}

.desktop-scan-note {
  display: none;
  margin: 0;
  font-family: "Space Mono", "IBM Plex Mono", monospace;
  font-size: 0.86rem;
  line-height: 1.55;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--text);
}

.app-store-qr-wrap {
  display: block;
}

.app-store-qr {
  width: 270px;
  height: 270px;
  display: block;
}

  .cta-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 32px;
    width: 100%;
    margin-top: 16px;
    flex-wrap: nowrap;
  }

.mobile-only {
  display: none;
}

@media (max-width: 700px) {
  /* Mobile: player full-width on top, App Store badge below, no QR. */
  :root {
    --phone-offset: 0px;
  }

  .hero {
    text-align: left;
    grid-template-columns: 1fr;
    padding: 110px 20px 60px;
    gap: 8px;
  }

  .hero-copy {
    display: flex;
    flex-direction: column;
    justify-items: start;
    text-align: left;
    max-width: 100%;
    margin-top: 0;
    grid-column: auto;
    align-self: center;
    gap: 26px;
    width: 100%;
  }

  .brand {
  font-family: "Fraunces", "Times New Roman", serif;
  text-transform: none;
    font-size: clamp(3.2rem, 11vw, 4.8rem);
  }

  .brand-mark {
    align-items: flex-end;
  }

  .brand-head {
    margin-bottom: 0.14em;
  }

  .brand-mark {
    gap: 14px;
  }

  .brand-head {
    width: clamp(38px, 11vw, 58px);
  }

  .media-stack {
    grid-column: auto;
    width: 100%;
    margin-top: 48px;
    justify-self: center;
    align-self: stretch;
    flex-direction: column-reverse;
    gap: 20px;
  }

  .phone {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 200px;
  }

 

  .audio-player {
  font-family: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    display: none;
    width: 100%;
    max-width: 100%;
    margin-top: 0;
    margin-bottom: 0;
    min-height: 59px;
    padding: 0 28px 0 12px;
    justify-content: flex-start;
    gap: 8px;
    transform: none;
    min-width: 0;
    order: 1;
  }

  .button {
  font-family: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    width: calc((100% - 16px) / 2 - 24px);
    min-height: 59px;
    padding: 0 28px;
    flex: 0 0 auto;
  }

  .app-store-cta {
    width: auto;
    min-height: 59px;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    order: 2;
  }

  .desktop-scan-note {
    display: none;
  }

  .app-store-qr-wrap {
    display: none;
  }

  .app-store-qr {
    width: 128px;
    height: 128px;
  }

  .app-store-badge {
    display: block !important;
    width: min(170px, 100%);
  }

  .app-store-badge img {
    width: 100% !important;
    height: auto !important;
  }

  .audio-play {
    width: 46px;
    height: 46px;
    padding: 0;
    margin-left: 10px;
    transform: none;
    color: #000000;
  }

  .audio-icon {
    width: 38px;
    height: 38px;
    margin-left: 0;
  }

  .audio-waveform {
    display: none;
  }

  .audio-track {
    display: grid;
    flex: 0 1 180px;
    max-width: 180px;
    padding-right: 4px;
  }

  .audio-range {
    padding: 0;
  }

  .audio-time {
    display: flex;
    min-width: 76px;
    font-size: 0.92rem;
    margin-left: 18px;
  }

  .cta-row {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 38px;
    width: 100%;
  }

  .walker {
    width: min(90vw, 360px);
    aspect-ratio: 4 / 3;
    margin-top: 20px;
  }

  .site-header {
    top: 16px;
    justify-content: flex-end;
    z-index: 20;
  }

  .nav {
    flex-wrap: nowrap;
    justify-content: flex-end;
    gap: 5px;
    font-size: 0.96rem;
    font-weight: 700;
    letter-spacing: 0.03em;
  }

  .nav a {
    padding: 5px 8px;
  }

  .nav a.active {
    padding: 5px 8px;
  }

  .nav .desktop-nav-link {
    display: none;
  }

  .mobile-more {
    display: block;
    position: relative;
    z-index: 40;
  }

  .mobile-more > summary {
    padding: 5px 8px;
  }

  .mobile-more-list {
    position: absolute;
    right: 0;
    top: calc(100% + 6px);
    z-index: 60;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  }

  h1 {
    text-align: left;
    font-size: clamp(1.38rem, 5.1vw, 2.05rem);
    line-height: 1.1;
    max-width: none;
    text-wrap: auto;
  }

  .page-content {
    padding: 140px 20px 60px;
  }

  .legal-page .page-content {
    min-height: auto;
    padding-bottom: 320px;
  }

  .support-page .page-content {
    padding-bottom: 320px;
  }

  .page-copy .big {
    font-size: clamp(1.5rem, 6vw, 2.2rem);
    line-height: 1.25;
    font-weight: 200;
  }

  .page-copy {
    gap: 28px;
  }

  .legal-copy {
    gap: 24px;
  }

  .legal-copy h1 {
    font-size: clamp(2.3rem, 9vw, 3.35rem);
    margin-bottom: 10px;
  }

  .support-page .legal-copy > section:first-child h1 {
    margin-bottom: 10px;
  }

  .legal-copy h2 {
    font-size: clamp(1.12rem, 4.8vw, 1.45rem);
  }

  .legal-copy p,
  .legal-copy li {
    font-size: 1.02rem;
    line-height: 1.72;
  }

  .mobile-only {
    display: block;
  }

  .button {
  font-family: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 1.1rem;
    justify-self: start;
    margin-bottom: 0;
  }

  .underline {
    padding-bottom: 0.28em;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='360' height='10' viewBox='0 0 360 10'%3E%3Cpath d='M4 7 C 20 3, 44 9, 68 6 S 112 3, 148 7 S 200 9, 236 6 S 292 3, 356 7' fill='none' stroke='%23FAF2E6' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-size: 100% 10px;
  }

  .celebration-shapes {
    opacity: 0.55;
    overflow: hidden;
  }

  .confetti {
    width: 26px;
    height: 26px;
    --confetti-gap: 5px;
  }

  .confetti-lg {
    width: 36px;
    height: 36px;
    --confetti-gap: 7px;
  }

  .confetti-sm {
    width: 22px;
    height: 22px;
    --confetti-gap: 4px;
  }

  .confetti-a {
    display: block;
    top: 84px;
    right: 16%;
    left: auto;
  }

  .confetti-b {
    display: block;
    top: 126px;
    right: 8%;
    left: auto;
  }

  .confetti-c {
    display: none;
  }

  .confetti-d {
    display: none;
  }

  .confetti-e {
    display: none;
  }

  .confetti-f {
    display: none;
  }

  .confetti-g {
    display: none;
  }

  .confetti-h {
    display: none;
  }

  .confetti-i {
    display: none;
  }

  .confetti-j {
    display: none;
  }

  .confetti-k {
    display: none;
  }

  .confetti-l {
    display: none;
  }

  .confetti-m {
    display: none;
  }

  .confetti-n {
    display: none;
  }
}

@media (min-width: 701px) {
  /* Desktop: QR on the left with the audio player to its right. */
  .app-store-badge {
    display: none !important;
  }

  .app-store-qr-wrap {
    display: block;
    grid-column: 1;
    grid-row: 1;
    align-self: start;
    margin-bottom: 14px;
  }

  .app-store-cta {
    display: none;
  }

  .desktop-scan-note {
    display: block;
    margin-top: 10px;
    margin-left: 0;
    font-size: 0.94rem;
    max-width: 220px;
  }

  .hero {
    padding-bottom: 500px;
  }

  .hero-copy {
    max-width: 620px;
  }

  .hero-copy h1 {
    font-size: clamp(1.46rem, 2.2vw, 2.3rem);
    max-width: 620px;
  }

  .nav {
    gap: 24px;
  }

  .audio-waveform {
    display: none;
  }
  .brand-mark {
    gap: 48px;
  }
  .confetti-m {
    display: block;
  }

  .confetti-n {
    display: block;
  }

  .confetti-a {
    top: 2%;
    left: -3vw;
  }

  .confetti-b {
    top: 11%;
    left: 5vw;
  }

  .confetti-c {
    top: 4%;
    right: 16vw;
  }

  .confetti-d {
    top: 12%;
    right: -2vw;
  }

  .confetti-e {
    top: 30%;
    right: -3vw;
    left: auto;
  }

  .confetti-f {
    top: 38%;
    right: 7vw;
  }

  .confetti-g {
    top: 54%;
    left: -5vw;
  }

  .confetti-h {
    top: 62%;
    right: -4vw;
  }

  .confetti-i {
    top: 88%;
    left: -6vw;
  }

  .confetti-j {
    top: 80%;
    right: -4vw;
  }

  .confetti-k {
    top: 88%;
    left: 2vw;
  }

  .confetti-l {
    top: 94%;
    right: 5vw;
  }

  .confetti-m {
    top: 24%;
    left: -7vw;
  }

  .confetti-n {
    top: 46%;
    right: -6vw;
    left: auto;
  }

  .brand {
    font-size: clamp(4.6rem, 6.4vw, 8.4rem);
  }

  .brand-head {
    width: clamp(64px, 6vw, 104px);
    margin-bottom: 0;
    transform: translateY(-6px);
  }

  h1 {
    font-size: clamp(1.9rem, 3vw, 3.1rem);
    font-weight: 350;
  }

  .button {
  font-family: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    min-width: 180px;
    height: 96px;
    padding: 0 46px;
  }
  .cta-row {
    display: grid;
    grid-template-columns: 220px minmax(330px, 1fr);
    align-items: start;
    column-gap: 46px;
    row-gap: 0;
    width: 620px;
    margin-top: 48px;
  }

  .phone {
    width: 72%;
    margin-bottom: 40px;
  }

 

  .audio-player {
  font-family: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    margin-top: 20px;
    margin-bottom: 0;
    min-height: 86px;
    width: 100%;
    max-width: none;
    flex: 0 0 auto;
    grid-column: 2;
    grid-row: 1;
    justify-self: start;
    align-self: start;
  }

  .app-store-qr {
    width: 220px;
    height: 220px;
  }

  .audio-player {
    gap: 20px;
    padding: 13px 52px 13px 0;
  }

  .audio-play {
    width: 64px;
    height: 64px;
    margin-left: 0;
  }

  .audio-icon {
    width: 56px;
    height: 56px;
    margin-left: 0;
  }

  .audio-track {
    height: 24px;
    flex: 1 1 auto;
    max-width: none;
    min-width: 0;
    margin-left: 12px;
    padding-right: 10px;
  }

  .audio-track::before {
    height: 8px;
  }

  .audio-progress {
    height: 8px;
  }

  .audio-range {
    height: 24px;
  }

  .audio-range::-webkit-slider-runnable-track {
    height: 8px;
  }

  .audio-range::-webkit-slider-thumb {
    width: 16px;
    height: 16px;
    margin-top: -4px;
  }

  .audio-range::-moz-range-track {
    height: 8px;
  }

  .audio-range::-moz-range-thumb {
    width: 16px;
    height: 16px;
    border: 0;
  }

  .audio-time {
    display: none;
  }

  .button {
  font-family: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    padding: 30px 46px;
    font-size: 1.4rem;
  }

  body {
    user-select: none;
  }

  img {
    user-select: none;
    -webkit-user-drag: none;
  }
}
