@charset "UTF-8";

/* 스크롤이 닿으면 시작되는 fade 애니메이션 */
.scroll-ani {
    opacity: 0;
    transition: opacity 0.7s ease, transform 0.7s ease;
    transform: translate(0, 80px);
}
.scroll-ani.fade {
    opacity: 1;
    transform: none;
}

/* up down 애니메이션 */
@keyframes upDown {
    0% {margin-bottom: 0;}
    100% {margin-bottom: -8px;}
}