/*
Transition/animation between web pages - https://www.youtube.com/watch?v=zWB219zf1og
*/

.container {	
	animation: transitionln 1.1s;
}

@keyframes transitionln {	
	from {
	opacity: 0;
	transform: translateY(-10deg);
	}
	
	to {
	opacity: 1;
	transform: translateY(0);
	}
}
