* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html.transition,
html.transition *,
html.transition *::before,
html.transition *::after {
  transition: all 200ms linear !important;
  transition-delay: 0 !important;
}

:root {
  --primary-fg: #222;
  --secondary-fg: #464646;
  --primary-bg: #fefefe;
  --secondary-bg: #eee;
  font-size: 1.2em;
}

html[data-theme=light] {
  --primary-fg: #222;
  --secondary-fg: #464646;
  --primary-bg: #fefefe;
  --secondary-bg: #eee;
}

html[data-theme=dark] {
  --primary-fg: #fefefe;
  --secondary-fg: #c7c7c7;
  --primary-bg: #222;
  --secondary-bg: #333;
}

body {
  font-family: "Work Sans", sans-serif;
  color: var(--primary-fg);
  background-color: var(--primary-bg);
}
body a {
  text-decoration: none;
  color: var(--primary-fg);
}
body a:hover {
  opacity: 0.7;
}
body button {
  padding: 8px;
  color: var(--primary-fg);
  background-color: var(--secondary-bg);
  font-family: "Work Sans", sans-serif;
  font-size: 0.9rem;
  border-radius: 5px;
  border: 2px solid var(--secondary-fg);
  outline: none;
  cursor: pointer;
}
body button.primary-button {
  border: 2px solid transparent;
  background-color: #1e569f;
  color: #eee;
}
body button:hover {
  filter: brightness(120%);
}
body button:active {
  filter: brightness(160%);
}
body button:focus {
  border: 2px solid #faa02b;
}
body button:disabled {
  filter: grayscale(100%);
}
body #mobile-full-menu {
  pointer-events: none;
  opacity: 0;
  transition: opacity 250ms ease;
  z-index: 990;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;
  background-color: #1e569f;
  color: #c7c7c7;
}
body #mobile-full-menu ul {
  list-style: none;
  display: flex;
  padding: 2em;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: 80vh;
  margin: 4rem 0;
}
body #mobile-full-menu.is-active {
  pointer-events: all;
  opacity: 1;
}
body header nav {
  user-select: none;
  min-height: 3em;
  background-color: var(--secondary-bg);
  display: flex;
  align-items: center;
  padding: 0 1rem;
  justify-content: space-between;
}
body header nav #hbd-logo {
  height: 2.5em;
  width: 3em;
  background-image: url("/images/logo.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
body header nav .group-container {
  z-index: 999;
  display: flex;
  align-items: center;
}
body header nav .group-container button {
  height: 2.5em;
  width: 2.2em;
  background: transparent;
  border: none;
}
body header nav #toggle-theme-button {
  transition: opacity 200ms ease-in-out;
  pointer-events: all;
}
body header nav #toggle-theme-button .hidden-icon {
  display: none;
}
body header nav #toggle-theme-button svg {
  fill: var(--secondary-fg);
}
body header nav #toggle-theme-button.is-active {
  opacity: 0;
  pointer-events: none;
}
body header nav #toggle-menu-button .burger {
  width: 100%;
  height: 4px;
  background-color: var(--secondary-fg);
  border-radius: 3px;
  transition: all 350ms ease-in-out;
}
body header nav #toggle-menu-button .is-active {
  background-color: #c7c7c7;
}
body header nav #toggle-menu-button #bar1 {
  transform: translateY(-5px);
}
body header nav #toggle-menu-button #bar2 {
  opacity: 1;
}
body header nav #toggle-menu-button #bar3 {
  transform: translateY(5px);
}
body header nav #toggle-menu-button #bar1.is-active {
  transform: translateY(4px) rotate(135deg);
}
body header nav #toggle-menu-button #bar2.is-active {
  opacity: 0;
}
body header nav #toggle-menu-button #bar3.is-active {
  transform: translateY(-4px) rotate(-135deg);
}
body header nav li {
  margin: 0;
}
body figure {
  display: flex;
  flex-direction: column;
  align-items: center;
}
body figure img {
  max-width: 100%;
  border-radius: 5px;
}
body figure figcaption {
  margin: 1rem 2rem;
  font-style: italic;
  opacity: 0.8;
  text-align: center;
}
body footer {
  background-color: var(--secondary-fg);
  color: #c7c7c7;
  padding-top: 2rem;
  margin-top: 3rem;
}
body footer .socials {
  padding: 1rem;
  margin-top: 2rem;
  background-color: #333;
}
body footer .copyright {
  background-color: #222;
  padding: 1ch;
  text-align: center;
}
body footer ul {
  width: min(40ch, 90%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(10ch, 1fr));
  align-items: center;
  justify-items: center;
  list-style-type: none;
}
body footer ul li {
  padding: 1ch 1rem;
}
body footer nav ul li a {
  color: var(--primary-bg);
}
body main {
  padding: 1rem 2rem;
}
body main h1,
body main h2,
body main h3,
body main h4,
body main h5,
body main h6 {
  margin: 2rem 0;
}
body main p,
body main ul,
body main ol {
  margin-bottom: 2rem;
}
body p,
body li {
  line-height: 1.8rem;
}
body h1 {
  font-weight: bold;
  font-size: 2.4rem;
}
body h2 {
  font-size: 2.2rem;
}
body h3 {
  font-size: 1.5rem;
}
body a {
  text-decoration: dotted underline;
}
body ol,
body ul {
  margin-left: 4ch;
}
body ol ::marker,
body ul ::marker {
  font-size: 1.3rem;
  font-weight: bold;
}
body code,
body pre {
  font-family: "Source Code Pro", monospace;
  pointer-events: all;
}
body .title {
  font-family: "Ultra", serif;
  font-weight: normal;
}
body .subtitle {
  font-style: italic;
  opacity: 0.8;
  border-top: solid 2px var(--primary-fg);
  border-bottom: solid 2px var(--primary-fg);
  padding-top: 1ch;
  padding-bottom: 1ch;
  margin: 2rem auto;
}
body .h-captcha {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
body .required {
  color: #f03434;
}
body blockquote p {
  display: block;
  background-color: var(--secondary-bg);
  padding: 1rem;
  font-style: italic;
  border-radius: 5px;
  border-left: 2px solid var(--secondary-fg);
}
body form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 55ch;
  margin: 2rem auto;
}
body form label {
  font-size: 1.1rem;
  color: var(--secondary-fg);
  font-weight: 500;
  display: block;
  margin-bottom: 0.3rem;
}
body form small {
  color: var(--primary-fg);
  opacity: 0.8;
  font-size: 0.9rem;
  font-style: italic;
  display: block;
  margin-top: 0.3rem;
}
body form input[type=text],
body form input[type=email],
body form textarea {
  padding: 0.8rem;
  border: 2px solid var(--secondary-fg);
  background-color: var(--primary-bg);
  border-radius: 5px;
  font-family: "Work Sans", sans-serif;
  font-size: 1rem;
  color: var(--primary-fg);
  transition: border-color 200ms ease-in-out;
}
body form input[type=text]:focus,
body form input[type=email]:focus,
body form textarea:focus {
  outline: none;
  border-color: #faa02b;
}
body form input[type=text]:invalid,
body form input[type=email]:invalid,
body form textarea:invalid {
  border-color: #ff6b6b;
}
body form textarea {
  resize: vertical;
  min-height: 100px;
  max-height: 400px;
}
body form button[type=submit] {
  background-color: #faa02b;
  color: #222;
  padding: 1rem 1.5rem;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  font-family: "Work Sans", sans-serif;
  font-weight: 500;
  cursor: pointer;
  width: fit-content;
  align-self: flex-start;
  transition: all 200ms ease-in-out;
}
body form button[type=submit]:hover {
  filter: brightness(120%);
  transform: translateY(-2px);
}
body form button[type=submit]:active {
  filter: brightness(160%);
  transform: translateY(0);
}
body form button[type=submit]:focus {
  border: 2px solid #1e569f;
}
body form button[type=submit]:disabled {
  filter: grayscale(100%);
  cursor: not-allowed;
  opacity: 0.6;
}
body form button[type=submit].loading {
  opacity: 0.7;
  cursor: wait;
}
body form .required-field::after {
  content: "*";
  color: #f03434;
  margin-left: 0.2rem;
}
body form .error-message {
  color: #ff6b6b;
  font-size: 0.9rem;
  margin-top: 0.2rem;
}
body form altcha-widget {
  margin: 0.5rem 0;
}
body .form-input-container {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
body .form-success {
  background-color: #4caf50;
  color: #fefefe;
  padding: 1rem;
  border-radius: 5px;
  margin: 1rem 0;
  border-left: 4px solid #2e7d32;
}
body .main-button-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media screen and (max-width: 650px) {
  #toggle-menu-button {
    display: block;
  }
  header nav ul {
    display: none;
  }
  p,
  li {
    line-height: 1.4rem;
  }
}
@media screen and (min-width: 650px) {
  #toggle-menu-button {
    display: none;
  }
  header nav ul {
    display: flex;
    align-items: center;
    list-style-type: none;
  }
  header nav ul li {
    padding: 0 1.2em;
  }
  header nav .dropdown-menu {
    cursor: pointer;
  }
  header nav .dropdown-items {
    margin-top: 0.9em;
    display: none;
    position: absolute;
    border: 2px solid var(--secondary-fg);
  }
  header nav .dropdown-items ul {
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: baseline;
  }
  header nav .dropdown-items ul li {
    width: 135px;
    background-color: var(--secondary-bg);
    padding: 0.4em 0;
    padding: 1em;
  }
  header nav .dropdown-menu.is-active .dropdown-items {
    display: flex;
    flex-direction: column;
  }
  main {
    margin: 0 auto;
    max-width: 60ch;
  }
}

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