body {
    background-image: url('./sources/stars.gif'); /* Replace 'your-background.gif' with the path to your GIF */
    background-size: cover; /* Adjust to fit the entire background */
    background-repeat: no-repeat; /* Prevents the background from repeating */
    background-attachment: fixed; /* Keeps the background fixed during scroll */
    color: lime; /* Text color to ensure readability */
    font-family: 'Courier New', monospace; /* Retro font style */
    overflow-x: hidden; /* Prevents horizontal scroll */
}


.header {
    text-align: center;
    padding: 20px;
}

.header h1 {
    color: #00FF00;
}

.glow {
    text-shadow: 0 0 5px #FF0000, 0 0 10px #FF0000, 0 0 20px #FF0000;
}

.nav-bar {
    display: flex;
    justify-content: center;
    background-color: #222;
    padding: 10px;
}

.nav-bar a {
    color: #00FF00;
    padding: 10px;
    text-decoration: none;
    font-weight: bold;
}

.nav-bar a:hover {
    background-color: #444;
    color: white;
}

footer {
    text-align: center;
    margin-top: 20px;
    color: #FF0000;
}
