/* Page-specific overrides for the Home (Mic Drop steps) */
/* Center the number+text pair inside each .step */
.step{ justify-content:center; }

.btn-cta {
  opacity: 0;
  animation: fadeIn 1s ease-in forwards;
}

.video-wrapper {
  opacity: 0;
  animation: fadeIn 1s ease-in forwards;
}

@keyframes fadeIn {
  to { opacity: 1; }
}