body {
  animation: transitionIn 1.2s;
}

@keyframes transitionIn {
  from {
    opacity: 0;
    transform: rotateX(-10deg);
  }

  to {
    opacity: 1;
    transform: rotateX(0);
  }
}

/* Center align navbar links on mobile */
@media (max-width: 991px) {
  .navbar-nav.d-flex.flex-row {
    justify-content: center;
    width: 100%;
  }
}