/* Scroll To Top Button */

#scrollTopBtn {
  position: fixed;
  bottom: 40px;
  right: 30px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border: 4px solid rgb(255, 16, 64);
  background: #f4f4f4;
  font-size: 30px;
  cursor: pointer;
  display: none;
  transition: all 0.3s ease;
}

#scrollTopBtn:hover {
  background: rgb(255, 16, 64);
}

#scrollTopBtn:hover .arrow {
  color: white;
}

/* Hide the button on screens smaller than 768px */
@media screen and (max-width: 768px) {
  #scrollTopBtn {
    display: none !important;
  }
}
