.container{
    animation: animationEffect 1s ease;
}
@-webkit-keyframes animationEffect { 
    0% {opacity: 0;}
    100% {opacity: 1;}
}