:root {
  color-scheme: light;
  --background: #f4f7fb;
  --background-strong: #e9eef6;
  --surface: #ffffff;
  --surface-muted: #f8faff;
  --text: #142238;
  --text-muted: #526279;
  --text-soft: #6b778a;
  --primary: #0b57d0;
  --primary-hover: #0848ad;
  --primary-soft: #e8f0fe;
  --accent: #c43854;
  --border: #d7deea;
  --border-strong: #bdc8d8;
  --focus: #ffbf47;
  --shadow-small: 0 2px 10px rgb(20 34 56 / 7%);
  --shadow-large: 0 24px 70px rgb(20 34 56 / 14%);
  --radius-small: 10px;
  --radius-medium: 18px;
  --radius-large: 28px;
  --page-width: 1160px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  background:
    radial-gradient(circle at 10% 0%, rgb(11 87 208 / 8%), transparent 34rem),
    var(--background);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

img,
svg {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

button,
select {
  cursor: pointer;
}

a {
  color: var(--primary);
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--primary-hover);
}

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

[hidden] {
  display: none !important;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  margin: -1px !important;
  padding: 0 !important;
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem 1rem;
  border-radius: var(--radius-small);
  background: var(--text);
  color: #ffffff;
  font-weight: 700;
  transform: translateY(-180%);
}

.skip-link:focus {
  color: #ffffff;
  transform: translateY(0);
}

.site-header {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid rgb(189 200 216 / 70%);
  background: rgb(255 255 255 / 88%);
  backdrop-filter: blur(14px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 2rem), var(--page-width));
  min-height: 74px;
  margin-inline: auto;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--text);
  font-weight: 800;
  letter-spacing: -0.025em;
  text-decoration: none;
  white-space: nowrap;
}

.brand:hover {
  color: var(--text);
}

.brand__mark {
  display: grid;
  width: 2.25rem;
  height: 2.25rem;
  place-items: center;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: inset 0 0 0 5px rgb(255 255 255 / 18%);
  color: #ffffff;
  font-size: 1.08rem;
  line-height: 1;
}

.brand__text {
  font-size: 1.05rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.site-nav a {
  flex: 0 0 auto;
  padding: 0.55rem 0.75rem;
  border-radius: 8px;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 650;
  text-decoration: none;
  white-space: nowrap;
}

.site-nav a:hover {
  background: var(--surface-muted);
  color: var(--text);
}

.site-nav a[aria-current="page"] {
  background: var(--primary-soft);
  color: var(--primary-hover);
}

main {
  min-height: 65vh;
}

.page-width {
  width: min(calc(100% - 2rem), var(--page-width));
  margin-inline: auto;
}

.page-width--article {
  max-width: 800px;
}

.breadcrumbs {
  padding-block: 1.4rem 0;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0;
  padding: 0;
  gap: 0.4rem;
  color: var(--text-soft);
  font-size: 0.86rem;
  list-style: none;
}

.breadcrumbs li:not(:last-child)::after {
  margin-left: 0.4rem;
  color: var(--border-strong);
  content: "/";
}

.breadcrumbs a {
  color: var(--text-muted);
}

.hero,
.page-intro {
  padding-block: clamp(2.5rem, 8vw, 5.5rem) 2rem;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(250px, 0.7fr);
  align-items: end;
  gap: clamp(2rem, 7vw, 6rem);
}

.page-intro {
  max-width: 800px;
}

.page-intro--centered {
  margin-inline: auto;
  text-align: center;
}

.hero h1,
.page-intro h1,
.utility-panel h1 {
  max-width: 17ch;
  margin: 0;
  font-size: clamp(2.3rem, 7vw, 4.7rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.page-intro--centered h1 {
  margin-inline: auto;
}

.hero > div > p:last-child,
.page-intro > p:last-child {
  max-width: 66ch;
  margin: 1.25rem 0 0;
  color: var(--text-muted);
  font-size: clamp(1.05rem, 2.3vw, 1.24rem);
}

.page-intro--centered > p:last-child {
  margin-inline: auto;
}

.eyebrow {
  margin: 0 0 0.65rem;
  color: var(--primary-hover);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero__facts {
  display: grid;
  margin: 0;
  padding: 1.15rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-medium);
  background: rgb(255 255 255 / 72%);
  box-shadow: var(--shadow-small);
  gap: 0.7rem;
  list-style: none;
}

.hero__facts li {
  display: flex;
  align-items: center;
  color: var(--text-muted);
  font-size: 0.92rem;
  font-weight: 650;
  gap: 0.65rem;
}

.hero__facts li::before {
  display: block;
  width: 0.55rem;
  height: 0.55rem;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--primary);
  content: "";
}

.timer {
  position: relative;
  display: grid;
  justify-items: center;
  width: min(100%, 760px);
  min-height: 580px;
  margin: 1.5rem auto 0;
  padding: clamp(1.25rem, 4vw, 2.5rem);
  border: 1px solid var(--border);
  border-radius: var(--radius-large);
  background: var(--surface);
  box-shadow: var(--shadow-large);
}

.timer__dial {
  position: relative;
  display: grid;
  width: clamp(250px, 64vw, 380px);
  aspect-ratio: 1;
  place-items: center;
}

.timer__progress {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  transform: rotate(-90deg);
}

.timer__track,
.timer__value {
  fill: none;
  stroke-width: 9;
}

.timer__track {
  stroke: var(--background-strong);
}

.timer__value {
  stroke: var(--primary);
  stroke-dasharray: 603.19;
  stroke-dashoffset: 0;
  stroke-linecap: round;
  transition: stroke-dashoffset 240ms linear;
}

.timer__readout {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 0.25rem;
}

.timer__readout time {
  color: var(--text);
  font-size: clamp(3.05rem, 14vw, 6.25rem);
  font-variant-numeric: tabular-nums;
  font-weight: 760;
  letter-spacing: -0.065em;
  line-height: 1;
}

.timer__readout span {
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.timer__controls {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1.2rem;
  gap: 0.65rem;
}

.button,
.icon-button,
.text-button {
  border: 0;
  background: none;
  font-weight: 750;
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0.66rem 1rem;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  background: var(--surface);
  color: var(--text);
  font-size: 0.88rem;
  line-height: 1;
  text-decoration: none;
}

.button:hover {
  border-color: var(--text-soft);
  background: var(--surface-muted);
  color: var(--text);
}

.button--primary {
  min-width: 105px;
  border-color: var(--primary);
  background: var(--primary);
  color: #ffffff;
}

.button--primary:hover {
  border-color: var(--primary-hover);
  background: var(--primary-hover);
  color: #ffffff;
}

.timer__options {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-top: 1.25rem;
  gap: 0.65rem;
}

.timer__options label {
  color: var(--text-muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.timer__options select {
  min-height: 42px;
  padding: 0.45rem 2.2rem 0.45rem 0.75rem;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-small);
  background: var(--surface);
}

.text-button {
  min-height: 42px;
  padding-inline: 0.35rem;
  color: var(--primary);
  font-size: 0.86rem;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.timer__hint,
.timer__message {
  margin: 0.85rem 0 0;
  color: var(--text-soft);
  font-size: 0.78rem;
  text-align: center;
}

.timer__message {
  min-height: 1.25rem;
  margin-top: 0.35rem;
  color: var(--primary-hover);
  font-weight: 700;
}

.timer[data-state="running"] .timer__value {
  stroke: var(--primary);
}

.timer[data-state="paused"] .timer__value {
  stroke: #8a5b00;
}

.timer[data-state="complete"] .timer__value {
  stroke: var(--accent);
}

.timer:fullscreen {
  width: 100vw;
  max-width: none;
  min-height: 100vh;
  justify-content: center;
  border: 0;
  border-radius: 0;
  background: var(--surface);
}

.timer:fullscreen .timer__dial {
  width: min(62vh, 80vw);
}

.timer:fullscreen .timer__hint {
  display: none;
}

.quick-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 900px;
  margin: 1.6rem auto 0;
  gap: 0.45rem;
}

.quick-links a {
  padding: 0.48rem 0.72rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgb(255 255 255 / 72%);
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
}

.quick-links a:hover {
  border-color: var(--primary);
  color: var(--primary-hover);
}

.dialog {
  width: min(calc(100% - 2rem), 530px);
  padding: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-medium);
  background: var(--surface);
  box-shadow: var(--shadow-large);
}

.dialog::backdrop {
  background: rgb(20 34 56 / 54%);
  backdrop-filter: blur(3px);
}

.dialog form,
.dialog > div {
  padding: clamp(1.25rem, 5vw, 2rem);
}

.dialog h2 {
  margin: 0;
  font-size: 1.4rem;
  letter-spacing: -0.025em;
}

.dialog p {
  color: var(--text-muted);
}

.dialog__heading,
.dialog__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.dialog__actions {
  justify-content: flex-end;
  margin-top: 1.25rem;
}

.icon-button {
  min-height: 40px;
  padding: 0.4rem;
  color: var(--text-muted);
  font-size: 0.82rem;
}

.time-fields {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1.25rem;
  gap: 0.75rem;
}

.time-fields label,
.embed-builder__controls > label {
  display: grid;
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 750;
  gap: 0.35rem;
}

.time-fields input,
.embed-builder input,
.embed-builder textarea {
  width: 100%;
  min-height: 46px;
  padding: 0.62rem 0.72rem;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-small);
  background: var(--surface);
}

.dialog--complete {
  text-align: center;
}

.dialog--complete .dialog__actions {
  justify-content: center;
}

.content-section {
  padding-block: clamp(3.5rem, 9vw, 7rem);
}

.content-section + .content-section {
  border-top: 1px solid var(--border);
}

.content-section--narrow {
  max-width: 820px;
  margin-inline: auto;
}

.content-section--split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 1.75rem;
}

.section-heading--split {
  display: flex;
  max-width: none;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
}

.section-heading h2,
.topic-panel h2 {
  margin: 0;
  font-size: clamp(1.75rem, 4vw, 2.7rem);
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.section-heading p:not(.eyebrow) {
  margin: 0.6rem 0 0;
  color: var(--text-muted);
}

.section-heading > a,
.section-link a {
  font-weight: 750;
}

.feature-grid,
.use-grid,
.link-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.feature-grid article,
.use-grid article,
.topic-panel,
.practical-note {
  padding: clamp(1.2rem, 4vw, 1.75rem);
  border: 1px solid var(--border);
  border-radius: var(--radius-medium);
  background: var(--surface);
  box-shadow: var(--shadow-small);
}

.feature-grid h3,
.use-grid h3,
.practical-note h3 {
  margin: 0;
  font-size: 1.02rem;
  letter-spacing: -0.015em;
}

.feature-grid p,
.use-grid p,
.practical-note p,
.topic-panel p {
  margin: 0.6rem 0 0;
  color: var(--text-muted);
  font-size: 0.91rem;
}

.use-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.use-grid article > span {
  display: block;
  margin-bottom: 1.1rem;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.practical-note {
  max-width: 800px;
  margin: 1rem auto 0;
  text-align: center;
}

.link-grid a {
  display: grid;
  min-height: 120px;
  align-content: center;
  padding: 1.2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-medium);
  background: var(--surface);
  color: var(--text);
  text-decoration: none;
  gap: 0.4rem;
}

.link-grid a:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-small);
}

.link-grid strong {
  font-size: 1.08rem;
}

.link-grid span {
  color: var(--text-muted);
  font-size: 0.86rem;
}

.link-grid--featured {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.link-grid--featured a {
  min-height: 145px;
}

.topic-panel {
  display: flex;
  min-height: 300px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.topic-panel .button {
  margin-top: 1.4rem;
}

.section-link {
  margin: 1.25rem 0 0;
  text-align: center;
}

.faq-list {
  border-top: 1px solid var(--border-strong);
}

.faq-list details {
  border-bottom: 1px solid var(--border-strong);
}

.faq-list summary {
  position: relative;
  padding: 1.1rem 2.5rem 1.1rem 0;
  font-weight: 750;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 1.1rem;
  right: 0;
  color: var(--primary);
  content: "+";
  font-size: 1.4rem;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list p {
  max-width: 68ch;
  margin: 0;
  padding: 0 2rem 1.25rem 0;
  color: var(--text-muted);
}

.timer-group {
  padding-block: 2.5rem 4.5rem;
}

.timer-group + .timer-group {
  border-top: 1px solid var(--border);
}

.timer-directory {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

.timer-directory a {
  display: grid;
  min-height: 112px;
  align-content: center;
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-small);
  background: var(--surface);
  color: var(--text);
  text-decoration: none;
  gap: 0.35rem;
}

.timer-directory a:hover {
  border-color: var(--primary);
}

.timer-directory span {
  color: var(--text-muted);
  font-size: 0.78rem;
}

.embed-builder {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
  overflow: hidden;
  margin: 1rem 0 4rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-large);
  background: var(--surface);
  box-shadow: var(--shadow-large);
}

.embed-builder__controls,
.embed-builder__preview {
  padding: clamp(1.25rem, 4vw, 2rem);
}

.embed-builder__preview {
  border-inline-start: 1px solid var(--border);
  background: var(--surface-muted);
}

.embed-builder h2 {
  margin: 0 0 1rem;
  font-size: 1.2rem;
}

.embed-builder__controls > label {
  margin-top: 1rem;
}

.embed-builder textarea {
  resize: vertical;
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 0.78rem;
}

.embed-builder__controls .button {
  margin-top: 1rem;
}

.embed-builder__controls [data-embed-message] {
  min-height: 1.5rem;
  color: var(--primary-hover);
  font-size: 0.85rem;
  font-weight: 700;
}

.embed-builder iframe {
  width: 100%;
  min-height: 560px;
  border: 1px solid var(--border);
  border-radius: var(--radius-medium);
  background: var(--surface);
}

.steps-list {
  display: grid;
  margin: 0;
  padding: 0;
  counter-reset: steps;
  gap: 0.75rem;
  list-style: none;
}

.steps-list li {
  display: grid;
  grid-template-columns: minmax(150px, 0.35fr) 1fr;
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-small);
  background: var(--surface);
  gap: 1rem;
}

.steps-list span {
  color: var(--text-muted);
}

.prose {
  padding-bottom: 6rem;
}

.prose section {
  padding-block: 1.6rem;
  border-top: 1px solid var(--border);
}

.prose h2 {
  margin: 0;
  font-size: 1.45rem;
  letter-spacing: -0.025em;
}

.prose p,
.prose ul {
  color: var(--text-muted);
}

.prose ul {
  padding-left: 1.25rem;
}

.prose .updated {
  color: var(--text-soft);
  font-size: 0.85rem;
}

.site-footer {
  margin-top: 4rem;
  border-top: 1px solid var(--border);
  background: var(--surface);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  width: min(calc(100% - 2rem), var(--page-width));
  margin-inline: auto;
  padding-block: 3rem;
  gap: 3rem;
}

.brand--footer {
  margin-bottom: 0.75rem;
}

.site-footer p {
  max-width: 36ch;
  margin: 0;
  color: var(--text-muted);
  font-size: 0.88rem;
}

.site-footer nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: start;
  gap: 0.65rem 1rem;
}

.site-footer nav a {
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 650;
}

.site-footer__legal {
  padding: 1rem;
  border-top: 1px solid var(--border);
  color: var(--text-soft);
  font-size: 0.78rem;
  text-align: center;
}

.utility-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 1rem;
}

.utility-panel {
  width: min(100%, 640px);
  padding: clamp(1.5rem, 6vw, 3rem);
  border: 1px solid var(--border);
  border-radius: var(--radius-large);
  background: var(--surface);
  box-shadow: var(--shadow-large);
  text-align: center;
}

.brand--centered {
  margin-bottom: 2rem;
}

.utility-panel h1 {
  margin-inline: auto;
  font-size: clamp(2rem, 8vw, 3.4rem);
}

.utility-panel > p:not(.eyebrow) {
  color: var(--text-muted);
}

.utility-panel .button {
  margin: 0.35rem;
}

.embed-page {
  display: grid;
  min-height: 100vh;
  background: var(--surface-muted);
  place-items: center;
}

.embed-main {
  display: grid;
  width: 100%;
  min-height: 100vh;
  align-content: center;
  justify-items: center;
  padding: 0.5rem;
}

.timer--compact {
  width: min(100%, 560px);
  min-height: 520px;
  margin: 0;
  padding: 1rem;
  border: 0;
  box-shadow: none;
}

.timer--compact .timer__dial {
  width: min(62vh, 330px);
}

.timer--compact .timer__controls {
  margin-top: 0.6rem;
}

.timer--compact [data-action="share"],
.timer--compact .timer__hint {
  display: none;
}

.embed-credit {
  color: var(--text-soft);
  font-size: 0.72rem;
}

@media (max-width: 900px) {
  .site-header__inner {
    align-items: flex-start;
    flex-direction: column;
    padding-block: 0.9rem;
  }

  .site-nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 0.15rem;
  }

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

  .hero__facts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .link-grid--featured,
  .timer-directory {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .embed-builder {
    grid-template-columns: 1fr;
  }

  .embed-builder__preview {
    border-top: 1px solid var(--border);
    border-inline-start: 0;
  }
}

@media (max-width: 680px) {
  .site-header__inner,
  .page-width,
  .site-footer__inner {
    width: min(calc(100% - 1.25rem), var(--page-width));
  }

  .brand__text {
    font-size: 0.98rem;
  }

  .site-nav a {
    padding-inline: 0.6rem;
    font-size: 0.82rem;
  }

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

  .timer {
    min-height: 530px;
    border-radius: var(--radius-medium);
  }

  .timer__dial {
    width: min(76vw, 310px);
  }

  .timer__readout time {
    font-size: clamp(3rem, 17vw, 4.5rem);
  }

  .button {
    min-height: 42px;
    padding-inline: 0.78rem;
    font-size: 0.82rem;
  }

  .timer__hint {
    display: none;
  }

  .time-fields,
  .feature-grid,
  .use-grid,
  .link-grid,
  .link-grid--featured,
  .timer-directory,
  .content-section--split,
  .site-footer__inner,
  .site-footer nav {
    grid-template-columns: 1fr;
  }

  .section-heading--split {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.5rem;
  }

  .steps-list li {
    grid-template-columns: 1fr;
    gap: 0.3rem;
  }

  .embed-builder iframe {
    min-height: 530px;
  }

  .site-footer__inner {
    gap: 2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  .site-header,
  .site-footer,
  .breadcrumbs,
  .quick-links,
  .timer__controls,
  .timer__options,
  .timer__hint,
  .timer__message,
  .content-section {
    display: none;
  }

  body,
  .timer {
    background: #ffffff;
    box-shadow: none;
  }
}
