css /* styles.css */ body { background-color: #ff0000; /* bright red background */ font-family: 'Arial', sans-serif; line-height: 1.5; font-weight: bold; margin: 0; padding: 0; } h1 { font-size: 24px; color: #00ff00; /* bright green text */ border-bottom: 4px solid #000000; /* thick black border */ text-shadow: 0 0 10px #000000; /* harsh drop shadow */ margin-bottom: 20px; } p { font-size: 18px; color: #000000; /* black text */ border-bottom: 4px solid #000000; /* thick black border */ margin-bottom: 20px; line-height: 1.5; font-weight: bold; } a { text-decoration: none; color: #0000ff; /* blue text */ font-weight: bold; border-bottom: 4px solid #000000; /* thick black border */ text-shadow: 0 0 10px #000000; /* harsh drop shadow */ margin-bottom: 20px; display: inline-block; padding: 5px 10px; border-radius: 10px; } a:hover { background-color: #000000; /* black background */ color: #ffffff; /* white text */ } h2 { font-size: 20px; color: #0000ff; /* blue text */ border-bottom: 4px solid #000000; /* thick black border */ margin-bottom: 20px; text-shadow: 0 0 10px #000000; /* harsh drop shadow */ margin-top: 40px; } h3 { font-size: 18px; color: #00ff00; /* bright green text */ border-bottom: 4px solid #000000; /* thick black border */ margin-bottom: 20px; text-shadow: 0 0 10px #000000; /* harsh drop shadow */ margin-top: 20px; }