body {
    background-color: #1d2021;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

h1 {
    background-image: linear-gradient(
        45deg,
        #808080 25%,
        #c0c0c0 25%,
        #c0c0c0 50%,
        #808080 50%,
        #808080 75%,
        #c0c0c0 75%,
        #c0c0c0 100%
    );
    background-size: 40px 40px;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: moveStripes 2s linear infinite;
}

.subtitle {
    color: #808080;
    font-size: 0.9rem;
    margin-top: -10px;
}

@keyframes moveStripes {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 40px 0;
    }
}