header {
  height: 64px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding-right: 32px;
  padding-left: 20px;

  color: var(--header-beige);
  background-color: var(--background-brown);
}

header a {
  text-decoration: none;
  color: var(--header-beige);

  font-family: 'Cormorant Garamond', serif;
  font-size: 21px;
  line-height: 23px;
  font-weight: bold;
}

#header-title {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

@media (min-width: 1024px) {
  header {
    height: 96px;
    padding-right: 64px;
    padding-left: 40px;
  }

  header a {
    font-size: 30px;
    line-height: 33px;
  }

  #logo {
    width: 96px;
    height: 64px;
  }

  #instagram-logo {
    width: 48px;
    height: 48px;
  }
}
