:root {
  --ON: initial;
  --OFF: ;
  --theme-1: var(--OFF);
  --theme-2: var(--ON);
  --white: #fff;
  --white-10: rgba(255, 255, 255, 10%);
  --black: #000;
  --yellow-400: #fabd00;
  --yellow-300: #ffd761;
  --yellow-100: #fff7df;
  --red-400: #ad1519;
  --red-400-06: rgba(173, 21, 25, 6%);
  --red-300: #e84046;
  --blue-400: #2a43b9;
  --blue-400-50: rgba(42, 67, 185, 50%);
  --blue-300: #6b7ede;
  --blue-50: #eaecf8;
  --green-400: #72954b;
  --green-400-50: rgba(114, 149, 75, 50%);
  --green-300: #8cb063;
  --green-50: #f1f4ed;
  --slate-100: #f8f8f9;
  --slate-200: #f1f2f4;
  --slate-300: #d7d8da;
  --slate-400: #b4b5b6;
  --slate-500: #939394;
  --slate-600: #656566;
  --slate-700: #545455;
  --slate-800: #282828;
  --positive: #35d52c;
  --positive-10: rgba(53, 213, 44, 10%);
  --negative: #d52c2f;
  --negative-10: rgba(213, 44, 47, 10%);
  --body-bg: var(--white);
  --body-color: var(--black);
  --accent: var(--theme-1, var(--green-400)) var(--theme-2, var(--blue-400));
  --accent-transparent: var(--theme-1, var(--green-400-50)) var(--theme-2, var(--blue-400-50));
  --accent-300: var(--theme-1, var(--green-300)) var(--theme-2, var(--blue-300));
  --accent-50: var(--theme-1, var(--green-50)) var(--theme-2, var(--blue-50));
}

@media (min-width: 740px) {
  :root {
    --spacer: 60px;
    --container-padding: 24px;
    --margin-block: 20px;
    --margin-heading: 16px;
    --margin-text: 8px;
  }
}
@media (max-width: 739.98px) {
  :root {
    --spacer: 40px;
    --container-padding: 20px;
    --margin-block: 14px;
    --margin-heading: 10px;
    --margin-text: 4px;
  }
}
html:has(.themeToggle input:checked) {
  --theme-1: var(--ON);
  --theme-2: var(--OFF);
}

::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
::-webkit-scrollbar-thumb {
  background-color: var(--slate-800);
}
::-webkit-scrollbar-thumb:hover {
  background-color: var(--black);
}

@-moz-document url-prefix() {
  html,
  body {
    scrollbar-width: thin;
    scrollbar-color: var(--slate-800) var(--body-bg);
  }
}
::selection {
  color: var(--body-color);
  background-color: var(--slate-100);
}

:-moz-focusring {
  outline: none;
}

:focus-visible {
  outline: none;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 360px;
  min-height: 100vh;
  min-height: 100dvh;
  margin: 0;
  font-family: Roboto, sans-serif;
  font-weight: 400;
  line-height: normal;
  color: var(--body-color);
  word-wrap: break-word;
  overflow-wrap: wrap;
  background: var(--body-bg);
  -webkit-font-smoothing: antialiased;
  -webkit-overflow-scrolling: touch;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: transparent;
}
@media (min-width: 740px) {
  body {
    font-size: 16px;
  }
}
@media (max-width: 739.98px) {
  body {
    font-size: 14px;
  }
}
body:has(dialog[open]) {
  overflow: hidden;
}

p {
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 150ms ease-in-out;
}

button {
  padding: 0;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: none;
}
button:not(:disabled) {
  cursor: pointer;
}

:disabled,
[disabled],
.disabled {
  pointer-events: none;
  cursor: default;
}

button,
[type=button],
[type=reset],
[type=submit] {
  appearance: button;
}

[type=search]::-webkit-search-cancel-button {
  appearance: none;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

input,
textarea {
  width: 100%;
  margin: 0;
  font: inherit;
  color: inherit;
  border: none;
}

input:-webkit-autofill, input:-webkit-autofill:active, input:-webkit-autofill:hover, input:-webkit-autofill:focus, input:-webkit-autofill:focus-visible {
  background-color: transparent !important;
  transition: background-color 5000000s ease-in-out 0s, color 5000000s ease-in-out 0s !important;
}

input::-webkit-contacts-auto-fill-button {
  position: absolute !important;
  display: none !important;
  pointer-events: none !important;
  visibility: hidden !important;
}

ul,
ol {
  padding: 0;
  margin: 0;
}

ul[class],
ol[class] {
  list-style: none;
}

img,
svg,
video,
iframe {
  display: block;
  max-width: 100%;
  user-select: none;
}

img {
  height: auto;
  font-size: 0.5em;
  font-style: italic;
  pointer-events: none;
  user-select: none;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  margin: 0;
  font-family: Ubuntu, sans-serif;
  line-height: normal;
}

h1,
.h1,
h2,
.h2 {
  font-weight: 700;
}

h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  font-weight: 500;
}

h1:not([class], :last-child),
h2:not([class], :last-child),
h3:not([class], :last-child) {
  margin-bottom: var(--margin-heading);
}

h2:not([class], :first-child) {
  margin-top: min(2em, var(--spacer));
}

h3:not([class], :first-child),
h4:not([class], :first-child),
h5:not([class], :first-child),
h6:not([class], :first-child) {
  margin-top: min(2em, var(--margin-block));
}

h4:not([class], :last-child),
h5:not([class], :last-child),
h6:not([class], :last-child) {
  margin-bottom: var(--margin-text);
}

@media (min-width: 740px) {
  h1,
  .h1 {
    font-size: 52px;
  }
}
@media (max-width: 739.98px) {
  h1,
  .h1 {
    font-size: 30px;
  }
}

@media (min-width: 740px) {
  h2,
  .h2 {
    font-size: 40px;
  }
}
@media (max-width: 739.98px) {
  h2,
  .h2 {
    font-size: 24px;
  }
}

@media (min-width: 740px) {
  h3,
  .h3 {
    font-size: 30px;
  }
}
@media (max-width: 739.98px) {
  h3,
  .h3 {
    font-size: 22px;
  }
}

@media (min-width: 740px) {
  h4,
  .h4 {
    font-size: 26px;
  }
}
@media (max-width: 739.98px) {
  h4,
  .h4 {
    font-size: 20px;
  }
}

@media (min-width: 740px) {
  h5,
  .h5 {
    font-size: 22px;
  }
}
@media (max-width: 739.98px) {
  h5,
  .h5 {
    font-size: 16px;
  }
}

@media (min-width: 740px) {
  h6,
  .h6 {
    font-size: 18px;
  }
}
@media (max-width: 739.98px) {
  h6,
  .h6 {
    font-size: 14px;
  }
}

small,
.small {
  font-weight: 400;
}
@media (min-width: 740px) {
  small,
  .small {
    --margin-text: 4px;
    font-size: 14px;
  }
}
@media (max-width: 739.98px) {
  small,
  .small {
    --margin-text: 2px;
    font-size: 12px;
  }
}

.container {
  width: min(100%, 1368px);
  padding-inline: var(--container-padding);
  margin-inline: auto;
}

.footer {
  margin-top: auto;
}

#overlay {
  position: fixed;
  inset: 0;
  z-index: 7;
  visibility: hidden;
  background-color: #000;
  opacity: 0;
  transition: all 250ms ease-in-out;
  transform: translateZ(0);
}
#overlay.show {
  z-index: 11;
  visibility: visible;
  opacity: 0.6;
}