@keyframes animate-gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

body {
    min-height: 100vh;
    background: linear-gradient(45deg, #090822, #15134A, #050428, #0B0857);
    background-size: 400% 400%;
    animation: animate-gradient 15s ease-in-out infinite;
    display: flex;
    margin: 0 0 0 0;
    justify-content: center;
    text-align: center;
    align-items: center;
    color: white;
    font-family:'Courier New', Courier, monospace;
}

#title, #sub-title {
    font-family: 'Kode Mono';
    color: whitesmoke;
}

#starfield {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1; /* Place canvas behind the content */
}

a {
    color: white;

}
