html,
body {
  overscroll-behavior: none;
}
body {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

#header {
  width: 99vw;
  height: 5svh;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  padding-top: 1vw;
  padding-left: 1vw;
  font-size: 16px;
  line-height: 18px;

  background-color: rgb(255, 255, 255);
  z-index: 10000;
  color: rgb(0, 0, 0);

  font-weight: 400;
  font-style: normal;
}

.pointer:hover {
  cursor: pointer;
  color: rgb(82, 82, 82);
}

/* Phone variant */
@media (max-width: 768px) {
  #header {
    position: fixed;
    top: 0;
    left: 0;
    grid-template-columns: repeat(2, 1fr); /* Adjust grid for smaller screens */
    gap: 10px;
    padding-left: 3%;
    padding-top: 3%;
    height: 7svh;
    padding-bottom: 1svh;
    width: 96%;
    font-size : 13px;
    line-height: 13px;
  }
}
