body {
  animation: opa 400ms;
}
section {
  animation: opa 400ms;
}
@keyframes opa {
  0% {opacity: 0;}
  50% {opacity: 0.5;}
  100% {opacity: 1;}
}