body { font-family: 'Courier New', Courier, monospace; background-color: #000000; /* Pure black background */ color: #e0e0e0; /* Lighter text color */ margin: 0; padding: 0; text-align: center; } h1 { color: #f0e68c; /* Bright yellow for headings */ font-size: 3em; margin-top: 50px; text-shadow: 2px 2px 10px #000000; } h2 { font-size: 2em; color: #a0a0a0; /* Slightly gray text */ text-shadow: 1px 1px 5px #000000; } .content { margin: 50px auto; padding: 30px; border: 1px solid #444; width: 80%; background-color: #444; box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.6); } .link { color: #a9a9a9; text-decoration: none; font-size: 1.2em; text-shadow: 1px 1px 3px #000000; } .link:hover { color: #f0e68c; text-shadow: 1px 1px 5px #000000; } .footer { margin-top: 100px; font-size: 1em; color: #666; text-shadow: 1px 1px 2px #000000; } #hidden { display: none; margin-top: 20px; padding: 20px; border: 2px dashed #555; background-color: #333; color: #aaa; box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.7); } #hidden a { color: #a9a9a9; text-decoration: none; } #hidden a:hover { color: #f0e68c; } .image { width: 100%; max-width: 300px; margin-top: 30px; } .glitch { color: #ff6347; font-size: 1.5em; text-shadow: 0 0 10px #ff6347, 0 0 20px #ff6347; animation: glitch 1s infinite alternate; } @keyframes glitch { 0% { text-shadow: 2px 2px 5px #ff6347, -2px -2px 5px #ff6347; } 100% { text-shadow: -2px -2px 5px #ff6347, 2px 2px 5px #ff6347; } }