.header {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding-bottom: 1rem;

  a {
    text-decoration: none;

    &:hover {
      text-decoration: underline;
    }
  }

  h1 {
    font-size: 2em;
    font-weight: bold;
    margin: 0;
  }

  .header-links {
    display: flex;
    flex-direction: row;
    gap: 1em;
  }
}

@media (max-width: 900px) {
  .header {
    grid-template-columns: 1fr;
    h1 {
      padding: 1em 0;
      font-size: 1.5em;
    }
  }
}
