*,
*::before,
*::after {
  box-sizing: border-box;
  font-size: 20px;
}

* {
  margin: 0;
}

body {
  font-family: "Geist", sans-serif;
  line-height: 1.5;
  min-height: 100vh;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
textarea,
select {
  font: inherit;
}

a {
  color: inherit;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

.theme-block {
  display: flex;
  width: 100%;
}

.theme-block:first-of-type {
  color-scheme: light;
}

.theme-block:last-of-type {
  color-scheme: dark;
}

.header {
  position: relative;
  height: 68px;
  padding: 12px;
  width: 100%;
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 5cqi;
}

.header-logo {
  margin-inline-end: auto;
}
.header-logo img {
  width: 50px;
}

.header-menu-toggle {
  margin-inline-start: auto;
  border: 0;
  border-radius: 0.375rem;
  padding-block: 0.5em;
  padding-inline-start: 1.25em;
  padding-inline-end: 1em;
  display: flex;
  align-items: center;
  column-gap: 0.5em;
  border: 1px solid light-dark(#ddd, #444);
}

.header-menu-toggle * {
  flex-shrink: 0;
}

.header-menu-toggle svg {
  font-size: 1.5em;
}

@container headerContainer (max-width: 30rem) {
  .header-menu-toggle {
    aspect-ratio: 1;
    padding-inline: 0.5em;
  }

  .header-menu-toggle span {
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    height: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    width: 1px;
  }
}

.header-navigation {
  display: flex;
  flex-wrap: wrap;
  column-gap: 0.5cqi;
}

.header-link {
  text-decoration: none;
  display: inline-block;
  border-radius: 0.375rem;
  background-color: transparent;
  padding: 0.5em 0.75em;
}

/* .header-link:hover {
  background-color: light-dark(#eee, #333);
} */
.iframe {
  width: 100%;
  height: calc(100vh - 80px);
}
