:root {
  --websiteHeaderFontSize: clamp(3rem, 1.8rem + 3vw, 7rem);
  --headerPaddingHeight: 10px;
  --headerContentPaddingHeight: 10px;
  --hamburgerIconSize: 2.4rem;
  --headerBorderSize: 1px;
  --headerFullHeight: calc(var(--headerContentPaddingHeight) * 2 + var(--headerPaddingHeight) * 2 + var(--websiteHeaderFontSize) + var(--headerBorderSize));
}

#websiteHeader {
  background-color: var(--generalBackgroundColor);
  max-width: 100dvw;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  /*padding: var(--headerPaddingHeight);*/
  height: var(--headerFullHeight);
  z-index: 8;
  box-sizing: border-box;
  position: relative;
  min-width: var(--minWebsiteSize);
  grid-row: 1;
  background: linear-gradient(
  to bottom,
  rgba(0, 0, 0, 1) 0%,
  rgba(0, 0, 0, 1) 60%,
  rgba(0, 0, 0, .8) 70%,
  rgba(0, 0, 0, .5) 80%,
  rgba(0, 0, 0, 0) 100%
);
}

#websiteHeaderContent {
  width: 100%;
  display: flex;
  padding: var(--headerContentPaddingHeight) 0;
}

h1 {
  order: 1;
  grid-column: 2;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: var(--websiteHeaderFontSize);
  font-family: 'rancho', Times, serif;
  font-weight: 600;
  padding: 0 0 0 5%;
  color: #fff;
  z-index: 9;
  flex: 3;
}

.logo {
  height: var(--websiteHeaderFontSize);
}

#headerButtonsContainer {
  grid-column: 3;
  width: 100%;
  display: none;
  justify-content: flex-end;
  align-items: center;
  margin: 0 5px;
  flex: 1;
}

#hamburgerButton {
  display: none;
  transition: color .2s, border .2s;
  color: #838383;
  position: relative;
  min-width: var(--hamburgerIconSize);
  min-height: var(--hamburgerIconSize);
  background-color: #47474700;
  border-radius: 3px;
  border: none;
  z-index: 10;
}

#hamburgerButton:hover {
  color: rgb(185, 185, 185)
}

#hamburgerButton:active {
  color: rgb(227, 227, 227);
}

#hamburgerButton:focus-visible {
  transition: none;
  color: rgb(185, 185, 185);
  border: var(--focusStyle);
  outline: none;
}

#hamburgerIcon i, #closeIcon i {
  display: block;
  line-height: 1;
  margin: 0;
  padding: 0;
  text-align: center;
}

#hamburgerIcon, #closeIcon {
  position: absolute;
  font-size: 2rem;
  justify-content: center;
  align-items: center;
  transition: transform 0.2s;
  display: flex;
  justify-content: center;
  align-items: center;
  will-change: transform;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

#hamburgerIcon {
  transform: scale(.01);
}

#closeIcon {
  transform: scale(.01);
}

.currentIcon {
  transform: scale(1) !important;
}