body {
    background-color: #111;
    background-image: repeating-linear-gradient(50deg, #222 25%, transparent 25%, transparent 75%, #222 75%, #222),
                      repeating-linear-gradient(50deg, #222 25%, #111 25%, #111 75%, #222 75%, #222);
    background-size: 120px 120px;
    background-position: 0 0, -120px -120px; 
    animation: slideBackground 10s linear infinite; 

    font-family: "Teko", sans-serif !important;
    font-weight: 400;
    font-style: normal;
}

/* Background animation */
@keyframes slideBackground {
    from {
        background-position: 0 0, -60px -60px;
    }
    to {
        background-position: -120px -120px, -180px -180px; /* Moves in one direction */
    }
}
