@import url('https://fonts.googleapis.com/css2?family=Titan+One&display=swap');

body{margin:0; -webkit-font-smoothing: antialiased;}
::-moz-selection {
    background: #fc768e;
    color: #fff;
}
::selection {
    background: #FC768EFF;
    color: #fff;
}

#main{
    width: 100%;
    height: calc(100vh);
    position: relative;
}

#main .main_bg .main_img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#main .main_img_txt{
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%,-50%);
    color: #fff;
    text-align: center;
    width: 100%;
}

#main .main_img_txt h1 {
    height: 100px;
}

#main .main_img_txt h1 span {
    position: relative;
    top: 20px;
    display: inline-block;
    animation: bounce .3s ease 20 alternate;
    font-family: 'Titan One', cursive;
    font-size: 7.5rem;
    color: #FFF;
    font-weight: 100;
    text-shadow: 0 1px 0 #CCC,
    0 2px 0 #CCC,
    0 3px 0 #CCC,
    0 4px 0 #CCC,
    0 5px 0 #CCC,
    0 6px 0 transparent,
    0 7px 0 transparent,
    0 8px 0 transparent,
    0 9px 0 transparent,
    0 10px 10px rgba(0, 0, 0, .4);
}

#main .main_img_txt h1 span:nth-child(2) { animation-delay: .1s; }
#main .main_img_txt h1 span:nth-child(3) { animation-delay: .2s; }
#main .main_img_txt h1 span:nth-child(4) { animation-delay: .3s; }
#main .main_img_txt h1 span:nth-child(5) { animation-delay: .4s; }
#main .main_img_txt h1 span:nth-child(6) { animation-delay: .5s; }
#main .main_img_txt h1 span:nth-child(7) { animation-delay: .6s; }

@keyframes bounce {
    100% {
        top: -20px;
        text-shadow: 0 1px 0 #CCC,
        0 2px 0 #CCC,
        0 3px 0 #CCC,
        0 4px 0 #CCC,
        0 5px 0 #CCC,
        0 6px 0 #CCC,
        0 7px 0 #CCC,
        0 8px 0 #CCC,
        0 9px 0 #CCC,
        0 50px 25px rgba(0, 0, 0, .2);
    }
}