*{
    padding: 0px;
    margin:0px;
    box-sizing: border-box;
}
.container{
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url('bg.png')no-repeat center center / cover ;
    color: white;
    font-family: cursive,Arial, Helvetica, sans-serif;
}
.container p{
    font-size: 8em;
    font-weight: bold;
    background:url('text-bg.png');
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    animation: move 40s linear infinite;
}
@keyframes move {
    0%{
        background-position: 0% 30%;
    }
    100%{
        background-position: 100% 50%;
    }
}