css /* styles.css */ body { background-color: #f5f5f5; font-family: "Arial", sans-serif; font-size: 12px; } /* Header */ h1 { text-align: center; color: #ff0000; /* Bright red */ font-size: 24px; font-weight: bold; border-bottom: 4px solid #000000; /* Thick black border */ margin-bottom: 10px; } /* Main Content */ main { display: flex; justify-content: center; align-items: center; height: 100vh; } /* Subpage Linking */ a { text-decoration: none; color: #0000ee; /* Bright blue */ font-weight: bold; } a:hover { color: #ff00ff; /* Bright magenta */ text-decoration: underline; } /* Footer */ footer { position: absolute; bottom: 0; width: 100%; background-color: #666666; color: #ffffff; /* Bright white */ padding: 5px; }