css /* styles.css */ body { background-color: #000; color: #fff; font-size: 20px; font-family: Arial, sans-serif; } h1 { font-weight: bold; font-size: 30px; color: #f00; border-bottom: 4px solid #000; padding-bottom: 4px; } h2 { font-weight: bold; font-size: 20px; color: #0f0; border-bottom: 4px solid #000; padding-bottom: 4px; } p { font-size: 18px; color: #0f0; padding: 8px 0; } a { text-decoration: none; color: #f00; background-color: #000; padding: 8px 16px; border: 1px solid #000; border-radius: 4px; } a:hover { background-color: #f00; border-color: #000; } /* Add a drop shadow for all elements */ * { box-shadow: inset 0 0 10px #000; }