.header {
  padding: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sticky-header {
  background-color: rgb(255, 255, 255, 0.7);
  position: fixed;
  top: 0;
  box-sizing: border-box;
  width: 100%;
  padding: 0 30px;
  display: flex;
  justify-content: end;
  align-items: center;
}

.header-title-logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.header-logo {
  width: 75px;
}

.header-title {
  margin: 0 0 0 30px;
  border-bottom: 1px solid black;
  text-transform: uppercase;
}

.header-navigation {
  display: flex;
  justify-content: center;
  align-items: center;
}

.header-link {
  padding: 20px;
  font-weight: 900;
  text-transform: uppercase;
  text-decoration: none;
  color: black;
  cursor: pointer;
  transition: all 300ms ease;

  &:hover {
    color: #fcd35d;
  }

  &:last-child {
    padding-right: 0;
  }
}

.header-link.button {
  background-color: #fcd35d;
  color: white;

  &:hover {
    background-color: #f8c226;
  }
}

@media only screen and (max-width: 1050px) {
  .header {
    flex-direction: column;
  }
  .sticky-header {
    justify-content: center;
  }
}

@media only screen and (max-width: 750px) {
  .header-title-logo-container {
    flex-direction: column;
  }

  .header-title {
    margin: 0 !important;
  }

  .header-navigation {
    flex-direction: column;
  }

  .header-link {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .sticky-header {
    display: none;
  }
}
