/*
Theme Name: The theme
Theme URI: https://matteocuocci/
Author: the WordPress team
Author URI: https://matteocuocci.it/
*/

body {
    background-color: #14161E;
    color: #fff;
    font-family: "Source Code Pro", monospace;
    font-optical-sizing: auto;
    font-style: normal;
}



.linear-wipe {
    text-align: center;

    background: linear-gradient(to right, #FFF 20%, #00a6ff 40%, #0038f3 60%, #ffffff 80%);
    background-size: 200% auto;

    color: #000;
    background-clip: text;
    text-fill-color: transparent;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    animation: shine 1s linear infinite;
    @keyframes shine {
        to {
            background-position: 200% center;
        }
    }
}