
    body { 
        font-family: Arial, sans-serif; 
        background-color: #0d1b2a; 
        color: #e0e1dd; 
        text-align: center; 
        transition: background-color 1s ease-in-out; 
    }
    h1 { color: #ffcc00; }
    a { color: #ff9900; text-decoration: none; transition: color 0.3s ease-in-out; }
    a:hover { color: #ffee88; }
    .glow { 
        animation: glow 1.5s infinite alternate; 
    }
    @keyframes glow {
        from { text-shadow: 0 0 5px #ffcc00; }
        to { text-shadow: 0 0 20px #ffcc00; }
    }
    