css /* styles.css */ body { background-color: #f7d0b6; /* bright and ugly pink */ font-family: monospace; } a { color: #ff00ff; /* bright, harsh blue */ text-decoration: none; } h1 { background-color: #000000; /* black background for harsh contrast */ color: #ffffff; /* bright white text */ border: 4px solid #000000; /* thick black border */ } .row { display: flex; flex-wrap: wrap; justify-content: center; } .col-md-6 { width: 40%; margin: 1em; background-color: #000000; /* black background for harsh contrast */ color: #ffffff; /* bright white text */ border: 4px solid #000000; /* thick black border */ padding: 1em; } .lead { font-weight: bold; } abbr { font-size: 0.8em; }