.header {
  height: var(--header-height);
  background-color: var(--primary-color);
  color: black;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}

.header a {
  text-decoration: 0;
  color: black;
}

.header-left-section {
  flex: 1.2;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-left: 2rem;
}

.header-clover-container {
  height: 2rem;
}

.header-clover-icon {
  height: 100%;
}

.header-website-name {
  font-weight: 500;
}

.header-link-kleefeldt {
  color: black;
  text-decoration: none;
}

.header-right-section {
  flex: 0.8;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-right: 2rem;
}

.header-right-section div {
  width: max-content;
  height: 100%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.header-right-section div:hover {
  font-weight: 500;
  border-bottom: 4px solid black;
}

@media (max-width: 767px) {
  .header {
    display: none;
  }
}

@media (min-width: 1280px) {
  .header-left-section {
    flex: 1.4;
  }

  .header-right-section {
    flex: 0.6;
  }
}

@media (min-width: 1921px) {
  .header-link {
    font-size: 1vw;
  }
}

@media (min-width: 2560px) {
  .header-left-section {
    gap: 1.5rem;
  }

  .header-clover-container {
    height: 3rem;
  }
}

@media (min-width: 3840px) {
  .header-left-section {
    gap: 2rem;
  }

  .header-clover-container {
    height: 4rem;
  }
}
