section .animate {
    filter: blur(4px);
    transition: 1s;
}

section.show-animate .animate {
    filter: blur(0px);
}

section {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow: hidden;
}

.section-1-content .animate {
    transform: translateY(100%);
}

.section-1-content.show-animate .animate {
    transform: translateY(0);
}


.section-2-content .animate {
    transform: translateY(100%);
}

.section-2-content.show-animate .animate {
    transform: translateY(0);
}