@keyframes transitionIn{
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

.container{
	animation: transitionIn 2s ;
}
