html body._home ._mobile-frame._bg-home ._content ._logo {
    animation: fadeIn; /* referring directly to the animation's @keyframe declaration */
    animation-duration: 2.5s;
}

html body._home ._mobile-frame._bg-home ._content ._paragraph h1 {
    animation: fadeIn; /* referring directly to the animation's @keyframe declaration */
    animation-duration: 2s;
}

html body._home ._mobile-frame._bg-home ._content ._paragraph p {
    animation: fadeInDown; /* referring directly to the animation's @keyframe declaration */
    animation-duration: 1.5s;
}

html body._home ._mobile-frame._bg-home ._content ._paragraph a._btn {
    animation: fadeInDown; /* referring directly to the animation's @keyframe declaration */
    animation-duration: 1s;
}

html body._home ._mobile-frame._bg-home._play ._content ._question span:nth-child(1){
    animation: fadeInDown;
    animation-duration: 3s;
}
html body._home ._mobile-frame._bg-home._play ._content ._question span:nth-child(2){
    animation: fadeInDown;
    animation-duration: 2.5s;
}
html body._home ._mobile-frame._bg-home._play ._content ._question span:nth-child(3){
    animation: fadeInDown;
    animation-duration: 2s;
}
html body._home ._mobile-frame._bg-home._play ._content ._question span:nth-child(4){
    animation: fadeInDown;
    animation-duration: 1.5s;
}