.site-header {
  display: flex;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  gap: var(--space-xl);
  align-self: auto;
  justify-self: auto;
  row-gap: 24px;
  height: 40px;
  padding-left: var(--space-4xs);
  padding-right: var(--space-4xs);
  font-size: var(--text-xs);
  font-family: inherit;
  justify-content: center;
  background-color: var(--dark);
}

.content {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  height: 100vh;
  background-color: var(--dark);
  justify-content: center;
  align-items: center;
}

.h1 {
  color: var(--light);
  font-size: var(--text-4xl);
}