@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono&display=swap');
body {
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    /* background: linear-gradient(to right, #08090e, #0a1b35, #08090e); */
    background-size: 200% 100%; 
    animation: gradientWipe 20s linear infinite; 
    z-index: 1;
    background-color: black;
}

a { 
    color: inherit; 
    text-decoration: none;
    } 

@keyframes gradientWipe {
    0% {
        background-position: 0% 50%; /* Start the gradient from the left */
    }
    50% {
        background-position: 100% 50%; /* Move the gradient to the right */
    }
    100% {
        background-position: 200% 50%; /* Extend the gradient further to the right */
    }
}

