.scrollr {
  opacity: 0;
  transform: translateX(50px);
  transition: all 1s ease;
}

.scrollr.visible {
  opacity: 1;
  transform: translateX(0);
}
