@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-display: block;
  src: url("/fonts/Montserrat/./Montserrat-VariableFont_wght.ttf") format("truetype");
}
@font-face {
  font-family: "Montserrat";
  font-weight: 100 700;
  font-style: italic;
  font-display: block;
  src: url("/fonts/Montserrat/./Montserrat-Italic-VariableFont_wght.ttf") format("truetype");
}
@font-face {
  font-family: "Material Symbols Outlined";
  font-style: normal;
  font-weight: 100 700;
  font-display: block;
  src: url("/fonts/Material-Symbols/./material-symbols-outlined.woff2") format("woff2");
}
.material-symbols-outlined {
  font-family: "Material Symbols Outlined";
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: "liga";
}

@font-face {
  font-family: "Material Symbols Rounded";
  font-style: normal;
  font-weight: 100 700;
  font-display: block;
  src: url("/fonts/Material-Symbols/./material-symbols-rounded.woff2") format("woff2");
}
.material-symbols-rounded {
  font-family: "Material Symbols Rounded";
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: "liga";
}

@font-face {
  font-family: "Material Symbols Sharp";
  font-style: normal;
  font-weight: 100 700;
  font-display: block;
  src: url("/fonts/Material-Symbols/./material-symbols-sharp.woff2") format("woff2");
}
.material-symbols-sharp {
  font-family: "Material Symbols Sharp";
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: "liga";
}

:root {
  --bg: #FFF;
}

html {
  hanging-punctuation: first last;
  /* color-scheme: dark light; */
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
  min-width: none;
  font-family: "Montserrat", sans-serif;
}

/* every target has scrolling, even overflow:scroll ones */
@media (prefers-reduced-motion: no-preference) {
  :has(:target) {
    scroll-behavior: smooth;
    scroll-padding-top: 3rem;
  }
}
body {
  margin: 0;
  padding: 0;
  background-color: var(--bg);
  color: #222;
}

/* better title breaking, only affects 2-4 lines */
h1, h2, h3, h4, h5, h6 {
  text-wrap: balance;
}

/* prevent orphans and better text readability */
p {
  /* max-width: 70ch; */
  text-wrap: pretty;
}

img:not(.static) {
  font-style: italic;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  shape-margin: 1rem;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

ul[class] {
  list-style: none;
  margin: 0;
  padding: 0;
}

dialog {
  max-width: none;
  max-height: none;
}

textarea {
  resize: none;
}

a:has(> .btn), button:has(> .btn), .btn, .btn a, .btn p {
  text-decoration: none;
}

.btn {
  background-color: var(--btn-bg);
  color: var(--btn-color);
  padding: 1rem 2rem;
  border-radius: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  flex-shrink: 0;
  flex-grow: 0;
}
@media (prefers-reduced-motion: no-preference) {
  .btn {
    transition: all 0.15s ease-in-out;
  }
}
.btn:has(> :only-child):not(.btn-normal), .btn-icon {
  padding: 1rem;
  border-radius: 25%;
}
.btn:hover {
  background-color: var(--btn-bg-hover);
  color: var(--btn-color-hover);
}
.btn:hover.icon-effects {
  font-variation-settings: "FILL" 1;
}
.btn:active {
  background-color: var(--btn-bg-active);
  color: var(--btn-color-active);
}
@media (prefers-reduced-motion: no-preference) {
  .btn:active {
    scale: 0.97;
  }
}
.btn-disabled {
  pointer-events: none;
  cursor: not-allowed;
  background-color: color-mix(in srgb, var(--btn-bg), transparent 50%);
  color: color-mix(in srgb, var(--btn-color), transparent 50%);
}
.btn-bold {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 1rem 6rem 1rem 1.5rem;
  min-width: 15rem;
  font-weight: 500;
}
.btn-primary {
  --btn-bg: #000;
  --btn-bg-hover: color-mix(in srgb, var(--btn-bg), white 15%);
  --btn-bg-active: #333;
  --btn-color: #fff;
  --btn-color-hover: var(--btn-color);
  --btn-color-active: var(--btn-color);
}
.btn-secondary {
  --btn-bg: #FFF;
  --btn-bg-hover: color-mix(in srgb, var(--btn-bg), black 10%);
  --btn-bg-active: #EEE;
  --btn-color: #222;
  --btn-color-hover: var(--btn-color);
  --btn-color-active: var(--btn-color);
}
.btn-danger {
  --btn-bg: rgb(232, 0, 0);
  --btn-bg-hover: color-mix(in srgb, var(--btn-bg), black 10%);
  --btn-bg-active: rgb(232, 0, 0);
  --btn-color: #fff;
  --btn-color-hover: var(--btn-color);
  --btn-color-active: var(--btn-color);
}
.btn-success {
  --btn-bg: #0f0;
  --btn-bg-hover: color-mix(in srgb, var(--btn-bg), black 10%);
  --btn-bg-active: #0c0;
  --btn-color: #fff;
  --btn-color-hover: var(--btn-color);
  --btn-color-active: var(--btn-color);
}
.btn-transparent {
  --btn-bg: transparent;
  --btn-bg-hover: color-mix(in srgb, var(--btn-bg), black 10%);
  --btn-bg-active: rgba(0, 0, 0, .1);
  --btn-color: #222;
  --btn-color-hover: var(--btn-color);
  --btn-color-active: var(--btn-color);
}
.btn-left {
  justify-content: flex-start;
}
.btn-right {
  justify-content: flex-end;
}
.btn-center {
  justify-content: center;
}
.btn-small {
  padding: 0.5rem !important;
  font-size: 0.8rem;
}
.btn.disabled, .btn[disabled] {
  pointer-events: none;
  opacity: 0.5;
  cursor: not-allowed;
}
.btn.btn-full-width {
  width: 100%;
}/*# sourceMappingURL=global.css.map */