.Header {
  display: grid;
  grid-template-columns: 22rem 1fr;
  border-block-end: 1rem solid var(--border-color);
  background-color: var(--background-color);
  background: var(--background-gradient);
}
@media (max-width: 500px) {
  .Header {
    display: flex;
    flex-direction: column;
  }
}

.Header.Home {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  height: 60vh;
  --font-size-large: var(--font-size-l1);
}

.Header nav {
  display: flex;
  width: 100%;
}
