@import url("https://fonts.googleapis.com/css?family=Luckiest+Guy");

.shine-text{
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 12px 48px;
    font-size: 50px;
    font-weight: 1000;
    white-space: normal; 

    background: linear-gradient(to right, #9f9f9f, #fff, #868686);
    background-size: 200% auto; 
    background-position: 0% center;

    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;

    animation: shine 3s linear infinite;
}

@keyframes shine {
    0%{
        background-position: 300% ;
    }
    100%{
        background-position: 600% ;
    }
}

body{
    overflow-x: hidden; 
}


h5{
    position: absolute;
    top: 8px; 
    left: 0;
    right: 0;
    text-align: center;
}