body {
    padding: 0;
    margin: 0;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}
.header{
    position: relative;
    overflow: hidden;
}
.header .title{
    width: 360px;
    animation: animate1 2s;
    transition-timing-function: cubic-bezier(0.255, 0.023, 0.945, 0.389);
}
.header .background{
    width: 100%;
    height: 90px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    background: linear-gradient(90deg, rgba(204, 204, 204, 1) 0%, rgba(46, 46, 46, 0.59) 30.46%, rgba(43, 43, 43, 1) 61.66%, rgba(204, 204, 204, 1) 100%);
    background-size: 200% 100%;
    animation: animate2 10s linear infinite;
}
@keyframes animate1 {
    0% {
        filter: blur(10px);
    }
    100% {
        filter: blur(0);
    }
}
@keyframes animate2 {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 200% 50%;
    }
}