css @import url('https://fonts.googleapis.com/css2?family=Rock+Salt&family=Ostrich+Sans:italics=true&style=italic'); body { background-color: #FF0000; /* Bright red background */ margin: 0; padding: 0; } h1, h2, h3 { font-family: "Rock Salt", sans-serif; font-weight: bold; color: #00FF00; /* Bright green text */ border-bottom: 4px solid #000; /* Thick black border */ text-shadow: 0 0 0 #000; /* Harsh, non-blurred drop shadow */ } p { margin: 0; padding: 0; font-family: "Ostrich Sans", serif; font-size: 18px; line-height: 24px; color: #FFFFFF; /* Bright white text */ border-bottom: 4px solid #000; /* Thick black border */ text-shadow: 0 0 0 #000; /* Harsh, non-blurred drop shadow */ } a { color: #0000FF; /* Blue text */ text-decoration: none; font-weight: bold; } a:hover { color: #FF0000; /* Red text on hover */ } /* Global navigation */ #global-nav { position: fixed; top: 10px; right: 10px; background-color: #000000; /* Black background */ padding: 4px; border: 2px solid #000000; /* Black border */ text-align: center; } #global-nav a { color: #00FF00; /* Bright green text */ text-decoration: none; font-weight: bold; } /* Page content */ #content { width: 80%; margin: 0 auto; padding: 10px; background-color: #000000; /* Black background */ border: 4px solid #000000; /* Black border */ } /* Subpage link styles */ .subpage-link { text-align: center; font-weight: bold; color: #00FF00; /* Bright green text */ border-bottom: 4px solid #000000; /* Black border */ } /* Add a subpage link to the main content section */ .subpage-link:hover { border-bottom: 4px solid #000000; /* Black text on hover */ } /* Make the link underline thicker on hover */ .subpage-link:visited { text-decoration: none; border-bottom: 8px solid #000000; /* Thicker black border for visited link */ }