css /* styles.css */ body { background-color: #ff00ff; /* Bright pink background */ color: #000; /* Black text */ font-family: 'Bangers', cursive; font-size: 24px; line-height: 1.2; margin: 20px; padding: 0; box-sizing: border-box; } h1, h2, h3, h4, h5, h6 { font-family: 'Bangers', cursive; font-weight: 900; margin: 20px 0 10px 0; padding: 0; color: #000; /* Black text */ border-bottom: 4px solid #000; /* Thick black border */ } a { text-decoration: none; color: #fff; /* Bright white text */ background-color: #000; /* Black background */ border: 2px solid #fff; /* Thick white border */ padding: 8px 16px; border-radius: 8px; box-shadow: 0 0 0 4px #000; /* Harsh, no-blur shadow */ } a:hover { background-color: #f00; /* Bright red background on hover */ border: 2px solid #f00; /* Bright red border on hover */ box-shadow: 0 0 0 4px #f00; /* Harsh, no-blur shadow on hover */ } /* Styles for the "Philosophy of Chainsaws" section */ .philosophy-of-chainsaws { background-color: #000; /* Black background */ padding: 20px 0; border: 4px solid #fff; /* Thick white border */ } .philosophy-of-chainsaws h1 { font-size: 36px; color: #fff; /* Bright white text */ margin: 0; padding: 0; border-bottom: 4px solid #fff; /* Thick white border */ } .philosophy-of-chainsaws p { margin: 20px 0; padding: 0; color: #fff; /* Bright white text */ } .philosophy-of-chainsaws a { color: #000; /* Black text */ background-color: #fff; /* White background */ border: 2px solid #000; /* Thick black border */ padding: 8px 16px; border-radius: 8px; box-shadow: 0 0 0 4px #000; /* Harsh, no-blur shadow */ } .philosophy-of-chainsaws a:hover { background-color: #fff; /* White background on hover */ border: 2px solid #000; /* Thick black border on hover */ box-shadow: 0 0 0 4px #000; /* Harsh, no-blur shadow on hover */ } .philosophy-of-chainsaws a:visited { background-color: #000; /* Black background */ border: 2px solid #000; /* Thick black border */ padding: 8px 16px; border-radius: 8px; box-shadow: 0 0 0 4px #000; /* Harsh, no-blur shadow */ } /* Styles for the "Chainsaw of the Absurd" section */ .chainsaw-of-the-absurd { background-color: #333; /* Dark gray background */ padding: 20px 0; border: 4px solid #fff; /* Thick white border */ } .chainsaw-of-the-absurd p { margin: 20px 0; padding: 0; color: #fff; /* Bright white text */ } .chainsaw-of-the-absurd a { color: #000; /* Black text */ background-color: #fff; /* White background */ border: 2px solid #000; /* Thick black border */ padding: 8px 16px; border-radius: 8px; box-shadow: 0 0 0 4px #000; /* Harsh, no-blur shadow */ }