.back-to-top {
  position: fixed;
  bottom: -60px;
  right: 20px;
  background-color: var(--bs-primary);
  color: var(--bs-white);
  padding: 10px 15px;
  border: none;
  border-radius: 15px;
  cursor: pointer;
  transition: background-color 0.3s, bottom 0.3s;
}

.back-to-top:hover {
  opacity: .9;
}

