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

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: #191919;
  color: #F0EEEC;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  line-height: 1.7;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}

.site-header {
  position: relative;
  font-size: 0.875rem;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 0.125rem;
  padding: 24px 24px 0;
}

.site-header a {
  color: #F0EEEC;
  text-decoration: none;
  padding: 6px 8px;
  border-radius: 8px;
  transition: background-color 0.15s ease;
}

.site-header a:hover,
.site-header a:focus-visible {
  background-color: rgba(255, 255, 255, 0.08);
  color: #F0EEEC;
  outline: none;
}

.site-header .separator {
  color: #777;
  margin: 0 0.125rem;
  padding: 6px 4px;
}

.site-header .breadcrumb-current {
  color: #F0EEEC;
  padding: 6px 8px;
}

.content-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem 1.25rem 4rem;
}

.content {
  max-width: 650px;
  margin: 0 auto;
  width: 100%;
}

main {
  margin-bottom: 0;
}

h1 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #F0EEEC;
}

p {
  margin-bottom: 1.5rem;
  color: #F0EEEC;
}

a {
  color: #B0AEAD;
  text-decoration: underline;
}

a:hover {
  color: #F0EEEC;
}

ul {
  margin-bottom: 1.5rem;
  padding-left: 1.25rem;
}

li {
  margin-bottom: 0.5rem;
}

h2 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: #F0EEEC;
}

.label {
  color: #F0EEEC;
  font-size: 0.875rem;
}

@media (min-width: 800px) and (min-height: 700px) {
  .site-header {
    position: fixed;
    top: 24px;
    left: 24px;
    padding: 0;
  }

  .content-wrapper {
    padding: 5rem 1.25rem 4rem;
  }
}

@media (max-width: 768px) {
  .content-wrapper {
    justify-content: flex-start;
  }
}

@media (max-width: 480px) {
  .site-header {
    padding: 20px 20px 0;
  }

  .content-wrapper {
    padding: 1.5rem 1rem 3rem;
  }

  h1 {
    font-size: 1.25rem;
  }
}
