body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}


#scrollToTop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: gray;
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  font-size: 24px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease, transform 0.3s ease, color 0.3s ease;
  z-index: 1000;
}

#scrollToTop:hover {
  background-color: rgb(90, 84, 84);
  transform: scale(1.05);
  color: black;
}

#scrollToTop.hidden {
  display: none;
}

#scrollToTop:active {
  transform: scale(0.95);
}
