/* ======================================
   GLOBAL STYLES
   ====================================== */
section {
  display: block;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.5s ease-out, transform 0.7s ease-out;
  background-color: inherit;
}

/* ======================================
   ANIMATION TRIGGER
   ====================================== */
section.visible {
  opacity: 1;
  transform: translateY(0);
}
