css /* style.css */ body { background: #ff0000; /* bright red */ margin: 0; padding: 0; } body * { font-family: "Arial Black", sans-serif; font-size: 16px; letter-spacing: 1px; word-spacing: 2px; } a { text-decoration: none; color: #ffffff; /* bright white */ background: #3333ff; /* dark blue */ border: 4px solid #000000; /* black border */ border-radius: 0; /* no rounded corners */ padding: 8px; text-align: center; text-decoration: none; transition: all 0.5s ease-in-out; } a:hover { background: #000000; /* black */ } h1, h2, h3 { color: #ff00ff; /* bright magenta */ font-weight: bold; text-shadow: 2px 2px 2px #000000; /* harsh black drop shadow */ } h1 { font-size: 36px; margin: 0 0 8px 0; padding: 4px 0; text-align: center; border: 4px solid #000000; /* black border */ border-bottom: none; } h2 { font-size: 24px; margin: 8px 0 4px 0; padding: 2px 0; border: 4px solid #000000; /* black border */ border-bottom: none; } h3 { font-size: 18px; margin: 4px 0 2px 0; padding: 2px 0; border: 4px solid #000000; /* black border */ border-bottom: none; } code { font-family: "Monaco", monospace; background: #333; /* dark grey */ border: 1px solid #000000; /* black border */ padding: 2px 4px; font-size: 16px; line-height: 16px; } code span { color: #ccccff; /* pale light blue */ } table { border-collapse: separate; border-color: #000000; /* black border */ border-style: solid; border-width: 1px; border-spacing: 4px; width: 100%; background-color: #3333ff; /* dark blue */ text-align: center; } table tr { border: 1px solid #000000; /* black border */ background: #3333ff; /* dark blue */ padding: 4px 0; } table td { border: 0; padding: 8px; background: #333; /* dark grey */ font-family: "Arial Black", sans-serif; font-size: 14px; line-height: 16px; } table th { background: #ff00ff; /* bright magenta */ border: 4px solid #000000; /* black border */ padding: 2px 0; font-size: 16px; text-align: center; text-shadow: 2px 2px 2px #000000; /* harsh black drop shadow */ } /* Add a fake scrollbar to make the table scrollable */ table { overflow: auto; max-height: 100vh; }