::selection {
  color: #313E37;
  background: #FFCF01;
}

#scroll-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background-color: #333132;
  color: white;
  border: none;
  border-radius: 5px;
  display: none;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  cursor: pointer;
  transition: background-color 0.3s ease, opacity 0.5s ease, transform 0.5s ease;
  opacity: 0;
  transform: translateY(10px);
}

#scroll-to-top:hover {
  background-color: #0056b3;
}

