.popout {
  animation: 1s bodyPopIn ease-in-out;
}

h4.popout {
    font-size: 25px;
}

h1.popout {
    font-size: 70px;
}

@keyframes bodyPopIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
