@import url("https://fonts.googleapis.com/css2?family=Courgette&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");
*,
*::before,
*::after {
  box-sizing: border-box;
}

:focus {
  outline: 1px solid var(--color-primary);
}

:root {
  font-family: var(--font-base);
  font-size: var(--font-size-base);
  -webkit-text-size-adjust: none;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}

body {
  min-width: 100%;
  background-color: var(--color-body-bg);
  color: var(--color-body-fg);
}

section,
header,
main,
footer {
  display: block;
}

button,
a[href] {
  cursor: pointer;
}

menu,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

ul,
ul li {
  margin: 0;
  padding: 0;
  list-style: none;
}

pre {
  white-space: pre-wrap;
  margin: 0;
}

img {
  max-width: 100%;
  max-height: 100%;
  height: auto;
  vertical-align: middle;
  font-style: italic;
  background-repeat: no-repeat;
  background-size: cover;
  shape-margin: 1em;
}

:root {
  --color-primary: #F40C75;
  --color-primary-rgb: 244, 12, 117;
  --color-primary-bg: #F40C75;
  --color-primary-bg-rgb: 244, 12, 117;
  --color-primary-fg: #FCFCFC;
  --color-primary-fg-rgb: 252, 252, 252;
  --color-secondary: #0C75F4;
  --color-secondary-rgb: 12, 117, 244;
  --color-secondary-bg: #0C75F4;
  --color-secondary-bg-rgb: 12, 117, 244;
  --color-secondary-fg: #FCFCFC;
  --color-secondary-fg-rgb: 252, 252, 252;
  --color-danger: #F40C14;
  --color-danger-rgb: 244, 12, 20;
  --color-danger-bg: #F40C14;
  --color-danger-bg-rgb: 244, 12, 20;
  --color-danger-fg: #FCFCFC;
  --color-danger-fg-rgb: 252, 252, 252;
  --color-warning: #F4640C;
  --color-warning-rgb: 244, 100, 12;
  --color-warning-bg: #F4640C;
  --color-warning-bg-rgb: 244, 100, 12;
  --color-warning-fg: #0D0D0D;
  --color-warning-fg-rgb: 13, 13, 13;
  --color-success: #4EF40C;
  --color-success-rgb: 78, 244, 12;
  --color-success-bg: #4EF40C;
  --color-success-bg-rgb: 78, 244, 12;
  --color-success-fg: #0D0D0D;
  --color-success-fg-rgb: 13, 13, 13;
  --color-info: #0C88F4;
  --color-info-rgb: 12, 136, 244;
  --color-info-bg: #0C88F4;
  --color-info-bg-rgb: 12, 136, 244;
  --color-info-fg: #FCFCFC;
  --color-info-fg-rgb: 252, 252, 252;
  --color-dark: #0D0D0D;
  --color-dark-rgb: 13, 13, 13;
  --color-dark-bg: #0D0D0D;
  --color-dark-bg-rgb: 13, 13, 13;
  --color-dark-fg: #FCFCFC;
  --color-dark-fg-rgb: 252, 252, 252;
  --color-medium: #808080;
  --color-medium-rgb: 128, 128, 128;
  --color-medium-bg: #808080;
  --color-medium-bg-rgb: 128, 128, 128;
  --color-medium-fg: #FCFCFC;
  --color-medium-fg-rgb: 252, 252, 252;
  --color-light: #FCFCFC;
  --color-light-rgb: 252, 252, 252;
  --color-light-bg: #FCFCFC;
  --color-light-bg-rgb: 252, 252, 252;
  --color-light-fg: #0D0D0D;
  --color-light-fg-rgb: 13, 13, 13;
  --color-body: #FFFFFF;
  --color-body-rgb: 255, 255, 255;
  --color-body-bg: #FFFFFF;
  --color-body-bg-rgb: 255, 255, 255;
  --color-body-fg: #0D0D0D;
  --color-body-fg-rgb: 13, 13, 13;
  --color-element: #F4F4F4;
  --color-element-rgb: 244, 244, 244;
  --color-element-bg: #F4F4F4;
  --color-element-bg-rgb: 244, 244, 244;
  --color-element-fg: #0D0D0D;
  --color-element-fg-rgb: 13, 13, 13;
  --color-scale: 0, 0, 0;
  --color-scale-inverted: 255, 255, 255;
  --font-base: "Open Sans", sans-serif;
  --font-display: "Courgette", cursive;
  --font-headers: "Open Sans", sans-serif;
  --font-legible: "Open Sans", sans-serif;
  --font-monospace: Consolas, monospace;
  --font-size-base: 16px;
}

:root::before {
  content: "";
  display: block;
  position: fixed;
  inset: 0 0 0 0;
  background-color: var(--color-body-bg);
  transition: opacity 0.4s ease-in-out;
  z-index: 9999;
}
:root::after {
  display: block;
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 9999;
  line-height: 1;
  translate: -50% -50%;
  transform-origin: 50% 50%;
  transition: opacity 0.4s ease-in-out, translate 0.4s ease-in-out;
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 128 128'%3E%3Cstyle%3E path %7B fill: none; stroke: %23F40C75; stroke-width: 8; animation: spin 2s linear infinite; transform-origin: center; %7D @keyframes spin %7B 0%25 %7B rotate: 0deg; %7D 100%25 %7B rotate: 360deg; %7D %7D %3C/style%3E%3Cpath d='M 4 64 A 60 60 0 1 0 64 4' /%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 6rem;
  height: 6rem;
  backface-visibility: visible;
}
:root.loading::before, :root.loading::after {
  opacity: 1;
}
:root:not(.loading)::before, :root:not(.loading)::after {
  pointer-events: none;
  opacity: 0;
}
:root:not(.loading)::after {
  transition-delay: 0.32s;
}

/*# sourceMappingURL=app.css.map */
