/*
Name: animation.css
Description: CSS-Datei Klavierunterricht-Limburg
Version 1.0
*/

/* ############### Open/Close Menu ################## */
@keyframes  open-menu {
	from { 
		opacity: 0;
		top: -25px;
	 }
	to {
		opacity: 1; 
		top: 0;		
		  }
}
@keyframes close-menu {
	from {
		opacity: 1; 
		top: 0;		
		  }
	to { 
		opacity: 0;
		top: -25px;
	 }
}	