/* CSS code to hide an element when scrolling */

.element-to-hide {
  position: fixed;
  top: -100px;
  /* Adjust this value to hide the element completely */
  transition: top 0.3s ease;
  /* Add a smooth transition effect */
}

/* Optional: Add a class to show the element */

.show-element {
  top: 0;
}