/*
Name: animation.css
Description: CSS-Datei für das Webdesign Tutorial.
Version: 1.0
*/

/* ########### Open/Close Menu ########### */
@keyframes open-menu {
    from {
        opacity: 0;
        top: -100px;
    }
    to {
        opacity: 1;
        top: 0;
    }
}
@keyframes close-menu {
    from {
        opacity: 1;
        top: 0;
    }
    to {
        opacity: 0;
        top: -100px;
    }
}