:root {
  --hue-rot: 0deg;
}

@keyframes hue {
  0% {
    filter: invert(var(--invert)) sepia(var(--sepia)) hue-rotate(0deg);
  }
  25% {
    filter: invert(var(--invert)) sepia(var(--sepia)) hue-rotate(90deg);
  }
  50% {
    filter: invert(var(--invert)) sepia(var(--sepia)) hue-rotate(180deg);
  }
  75% {
    filter: invert(var(--invert)) sepia(var(--sepia)) hue-rotate(270deg);
  }
  100% {
    filter: invert(var(--invert)) sepia(var(--sepia)) hue-rotate(360deg);
  }
}

body {
  padding: 0px;
  margin: 0px;
  font-family: "Poppins", serif;
  background-color: var(--bg-color);
  color: var(--text-color);
}

img {
  user-select: none;
  -moz-user-select: none;
  -webkit-user-drag: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}

.unselectable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.hidden {
  visibility: hidden;
}

.visible {
  visibility: visible;
}

.hline {
  border: none;
  height: 2px;
  color: var(--bg-color);
  background-color: var(--text-color);
  margin: 0px;
  padding-right: 10px;
}

.container {
  margin: 0px 30px;
}

.section {
  padding-top: 150px;
  padding-bottom: 50px;
}

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

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

.line {
  border: none;
  height: 2px;
  width: 97%;
  background-color: var(--text-color);
}

.title {
  display: flex;
  align-items: center;
  margin: 0px;
  width: 100%;
  height: 70vh;
}

.title-text {
  font-size: 15vw;
  color: var(--text-color);
  font-weight: 900;
  letter-spacing: 5px;
  margin: 0px;
  padding-left: 30px;
}

.link-no-decoration {
  text-decoration: none;
}

.telegram-link {
  margin: 0px;
  padding: 0px;
  color: var(--text-color);
  font-style: italic;
}

.title-gif {
  aspect-ratio: 2/1;
  height: 100px;
  filter: invert(var(--invert)) sepia(var(--sepia)) hue-rotate(var(--hue-rot));
  animation-name: hue;
  animation-duration: 15s;
  animation-iteration-count: infinite;
}

.sticky {
  background-color: var(--bg-color);
  position: sticky;
  top: 0;
  z-index: 2;
}

.logo {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}

.navbar-container {
  padding: 10px;
  background-color: var(--bg-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-menu-container {
  display: flex;
  margin: 0px 0px;
}

.navbar-item {
  margin: 0px 8px;
  padding: 10px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  background-color: var(--text-color);
  color: var(--bg-color);
  text-decoration: none;
}

.navbar-item:hover {
  font-style: italic;
  text-decoration: underline;
  cursor: pointer;
}

.light-dark-button {
  background-color: var(--text-color);
  color: var(--bg-color);
  border: 0.5mm solid;
  border-radius: 100px;
  aspect-ratio: 1/1;
  width: 30px;
  height: 30px;
  padding: 0px;
}

.light-dark-button:hover {
  transition: 1s;
  cursor: pointer;
  transform: rotate(180deg) scale(1.1);
}

.size {
  height: 1em;
  width: 1em;
  font-weight: 600;
}

.footer-img {
  width: 100px;
}

.footer-text {
  font-size: 15px;
  padding-left: 10px;
}

.cookie-container {
  position: fixed;
  bottom: 0px;
  margin-bottom: 16px;
  left: 50%; /* move to horizontal center */
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  width: 550px;
  padding: 16px;

  background-color: var(--text-color);
  color: var(--bg-color);
  border-radius: 10px;
}

.cookie-title {
  line-height: 20px;
}

.cookie-button-container {
  margin-left: auto;
}
.cookie-button {
  padding: 10px 30px;
  font-weight: 900;
  margin: 0px 5px;
}
.cookie-button:hover {
  cursor: pointer;
}

.reject-button {
  background-color: var(--text-color);
  color: var(--bg-color);
  border: solid;
  border-width: 3px;
  border-color: var(--bg-color);
}

.accept-button {
  background-color: var(--bg-color);
  color: var(--text-color);
  border: solid;
  border-width: 3px;
  border-color: var(--bg-color);
}

.reject-button:hover {
  text-decoration: underline;
  text-decoration-thickness: 3px;
}

.accept-button:hover {
  text-decoration: underline;
  text-decoration-thickness: 3px;
}

.cookie-exit {
  position: fixed;
  right: 0;
  top: 0;
  margin: 10px;
  border: none;
  background: none;
  font-size: 20px;
  font-weight: 900;
  color: var(--bg-color);
}

.cookie-exit:hover {
  cursor: pointer;
}
