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