.page-transition {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  min-width: 0;
  animation: page-enter 480ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.page-transition > .page {
  flex: 1 0 auto;
  min-height: auto;
}

.page-transition > .public-footer {
  margin-top: auto;
}

@keyframes page-enter {
  from {
    opacity: 0;
    transform: translateY(0.85rem);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-transition {
    animation: none;
  }
}
.skip-link {
  position: fixed;
  z-index: 10000;
  top: 0.5rem;
  left: 0.5rem;
  padding: 0.65rem 0.9rem;
  color: #fff;
  background: #063c22;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}
