body {
  margin: 0;
  font-family: Arial, sans-serif;
}

.spacer {
  height: 100vh;
}

.animate-on-scroll {
	opacity: 0;
	transform: translateY(200px);
	transition: all 0.6s ease-out;

}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

