header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;

  height: 80px;
  padding-left: 32px;
  padding-right: 32px;
}

#logo {
  cursor: pointer;
}

#header-title {
  cursor: pointer;
  color: var(--text-grey);
  font-size: 36px;
  font-weight: bold;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

#cta-button {
  height: 48px;
  width: 160px;
  font-size: 21px;
}

@media (max-width: 1024px) {
  #cta-button {
    height: 32px;
    width: 120px;
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  #cta-button {
    height: 32px;
    width: 90px;
    font-size: 12px;
  }

  header {
    justify-content: flex-start;
    height: 64px;
    padding-left: 24px;
    padding-right: 24px;
  }
  header > :nth-child(2) {
    margin-left: 12px;
  }
  header > :nth-child(3) {
    margin-left: auto;
  }

  #header-title {
    font-size: 16px;
    position: static;
    left: auto;
    transform: none;
  }

  #logo {
    width: 32px;
    height: 32px;
  }
}
