#scrollToTopBtn {
  display: none; /* Hidden by default */
  position: fixed; /* Fixed/sticky position */
  bottom: 20px; /* Place the button at the bottom of the page */
  right: 30px; /* Place the button 30px from the right */
  z-index: 99; /* Make sure it does not overlap */
  border: none; /* Remove border */
  outline: none; /* Remove outline */
  cursor: pointer; /* Add a mouse pointer on hover */
  padding: 15px; /* Some padding */
  border-radius: 10px; /* Rounded corners */
  font-size: 18px; /* Increase font size */
    background-color: rgba(255,255,255,0.5);
  color: #C72026;
  border: solid 1px #C72026;
  transition: all .3s;
    transition-duration: 0.3s;
}

#scrollToTopBtn:hover {
  background-color: rgba(255,255,255,0.9); /* Add a darker background on hover */
}

#scrollToTopBtn svg {
  width: 24px;
  height: 24px;
}

