@import url("https://fonts.googleapis.com/css2?family=Potta One:wght@300;400;500;600&display=swap");
:root {
  --fallback-fontstack: -apple-system, BlinkMacSystemFont,
  	"Segoe UI", Roboto, Helvetica, Arial, sans-serif,
  	"Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol" !important;
  --primary-fontstack: "Inter", $fallback-fontstack !default;
  --txt-color: #434343;
  --bg-color: #ffffff;
  --bg-color--alt: ghostwhite;
  --color-indigo: #617ef2;
  --color-violet: #845ef7;
  --color-red: #ff6b6b;
  --color-green: #51cf66;
  --color-orange: #ff922b;
  --color-gray8: #343a40;
  --primary-color: var(--color-indigo);
  --secondary-color: var(--color-gray8);
  --success-color: var(--color-green);
  --warning-color: var(--color-orange);
  --danger-color: var(--color-red);
  --base-fontsize: 6em;
  --transition: all 120ms ease-out;
}

html {
  box-sizing: border-box !important;
}

*,
*::before,
*::after {
  box-sizing: inherit !important;
}

html {
  font-size-adjust: 100%;
  font-size: var(--base-fontsize);
}

html,
body {
  /* text-rendering: optimizeLegibility !important;
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important; */
  height: 100% !important;
  min-height: 100vh !important;
  width: 100%;
  max-width: 100vw !important;
  min-width: 320px;
  overflow-x: hidden;
  margin: 0 !important;
  padding: 0 !important;
  position: relative;
  /*   background-color: #111; */
  color: whitesmoke;
  font-family: "Potta One", "Inter UI", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol" !important;
  line-height: 1;
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-content: center;
  justify-content: center;
}

p,
span,
time {
  line-height: 1;
  margin: 0 auto;
  text-align: center;
}

html,
body,
main,
section {
  position: relative;
}

.time-wrapper {
  transition: all 120ms ease-out;
}
.time-wrapper * {
  transition: all 120ms ease-out;
}

.time {
  font-variant-numeric: tabular-nums;
  font-weight: 300;
}

.date {
  font-size: 50%;
  font-weight: 300;
}

.outline,
.outline-button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-size: 20px !important;
  cursor: pointer;
  font-weight: 600;
  line-height: 1;
  background-color: rgba(97, 31, 255, 0);
  border: 2px solid #611fff;
  color: #611fff;
  border-radius: 5px;
  padding: 0.5em;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  transition: all 120ms ease-out;
}

footer {
  width: 100%;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.125em;
  padding-top: 16px;
  padding-left: 0.35rem;
  padding-bottom: 0.125rem;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  font-size: 20px;
  text-align: left;
  margin: 0 !important;
  background-color: #000;
  transition: all 300ms ease-in-out;
  opacity: 0.35;
}
footer p {
  font-size: 20px !important;
  display: block;
  width: 100%;
  text-align: inherit;
}
footer h1,
footer h2,
footer h3,
footer h4,
footer h5,
footer h6 {
  font-size: 24px !important;
  display: block;
  width: 100%;
  margin-bottom: 8px !important;
  margin-top: 0 !important;
  padding-top: 8px !important;
  text-align: inherit;
}
footer:hover {
  opacity: 1;
}

a,
a:link,
a:visited {
  color: #611fff;
  cursor: pointer;
  transition: all 250ms ease-in-out;
  text-transform: none;
  text-decoration: none !important;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  border-radius: 0.25em;
  padding: 0;
  border: 2px solid rgba(97, 31, 255, 0);
  transform: translate3d(0, 0, 0);
  display: inline-block;
  line-height: 1;
  font-weight: 500;
}
a:hover,
a:link:hover,
a:visited:hover {
  color: #4500eb;
  background-color: rgba(97, 31, 255, 0.1);
  text-decoration: none;
}
a:focus,
a:link:focus,
a:visited:focus {
  color: #3e00d2;
  background-color: rgba(97, 31, 255, 0.2);
  border: 2px solid #611fff;
  outline: 4px solid rgba(97, 31, 255, 0.25);
  outline-offset: -2px;
  text-decoration: none;
}
a:active,
a:link:active,
a:visited:active {
  color: #3600b8;
  background-color: rgba(97, 31, 255, 0.3);
  border: 2px solid rgba(97, 31, 255, 0.3);
  transform: translate3d(0, 2px, 0) !important;
}

html,
body {
  min-width: 320px !important;
}

body.dark {
  background-color: #111;
  color: #fff;
}
body.dark #time-wrapper {
  color: inherit !important;
}
body.dark #time-wrapper *,
body.dark #time-wrapper *::before,
body.dark #time-wrapper *::after {
  color: inherit !important;
}
body.dark footer {
  background-color: #000 !important;
  opacity: 0.1;
}
body.dark footer:hover {
  opacity: 0.75;
}
body.system-font {
  font-family: system-ui !important;
}
body.system-font *,
body.system-font *::before,
body.system-font *::after {
  font-family: system-ui !important;
}/*# sourceMappingURL=style.css.map */
