@keyframes muyuDeng {
    0%{
        width: 100%;
    }
    50%{
        width: 90%;
    }
    100%{
        width: 100%;
    }
}
@keyframes fezuDeng {
    0%{
        transform: rotate(0deg);
        width: 100%;
    }
    50%{
        transform: rotate(5deg);
        width: 95%;
    }
    70%{
        transform: rotate(3deg);
        width: 100%;
    }
    100%{
        transform: rotate(0deg);
        width: 100%;
    }
}
@keyframes text {
    0%{
        margin-bottom: 0;
        opacity: 0;
        filter: brightness(1);
    }
    30%{
        margin-bottom: 10vh;
        opacity: 1;
        filter: brightness(1.1);
    }
    50%{
        margin-bottom: 10vh;
        opacity: 1;
        filter: blur(0);
    }
    70%{
        margin-bottom: 11vh;
        opacity: 0.1;
        filter: blur(1px);
    }
    100%{
        margin-bottom:20vh ;
        opacity: 0;
        filter: blur(100px);
    }
}