.content.animar{
  animation-name: show;
  animation-duration: 1300ms;
  animation-fill-mode: forwards;
}

@keyframes show{
  from{
    opacity: 0;
  }
  to{
    opacity: 1;
  }
}