css /* _styles.css */ body { background: #000; color: #fff; font-family: 'Open Sans', sans-serif; margin: 0; padding: 0; } body::before { content: "Steve the Forecaster's Weather Page"; font-size: 32px; font-weight: bold; color: #ff0; text-align: center; text-shadow: 0 0 10px black; background: #000; position: absolute; top: 10px; left: 50%; transform: translateX(-50%); } body::after { content: "A forecaster of questionable accuracy, but good luck!"; font-size: 12px; font-weight: normal; color: #fff; text-shadow: 0 0 10px black; background: #000; position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%); } h1 { font-size: 48px; font-weight: bold; margin: 20px 0; padding: 20px; border: 4px solid #000; border-bottom-style: none; text-shadow: 0 0 10px #fff; background: #000; color: #fff; text-align: center; text-transform: uppercase; letter-spacing: 4px; word-spacing: 4px; line-height: 1.2; } h2 { font-size: 24px; font-weight: bold; margin: 10px 0; padding: 10px; border: 4px solid #000; border-bottom-style: none; text-shadow: 0 0 10px #fff; background: #000; color: #ff0; text-align: center; text-transform: none; letter-spacing: 2px; word-spacing: 2px; line-height: 1.2; } h3 { font-size: 18px; font-weight: bold; margin: 5px 0; padding: 5px; border: 4px solid #000; border-bottom-style: none; text-shadow: 0 0 10px #fff; background: #000; color: #fff; text-align: center; text-transform: none; letter-spacing: 1.5px; word-spacing: 1.5px; line-height: 1.2; } a { font-size: 18px; font-weight: bold; margin: 5px 10px 5px 10px; padding: 5px; border: 4px solid #000; border-bottom-style: none; text-shadow: 0 0 10px #fff; background: #000; color: #ff0; text-align: center; text-transform: none; letter-spacing: 1.5px; word-spacing: 1.5px; line-height: 1.2; text-decoration: none; transition: background-color 0.5s; } a:hover { background: #000; color: #fff; border: 4px solid #000; border-bottom-style: none; text-decoration: none; } a:focus { background: #fff; color: #000; border: 4px solid #000; border-bottom-style: none; text-decoration: none; } a:active { background: #000; color: #fff; border: 4px solid #000; border-bottom-style: none; text-decoration: none; } a:visited { background: #000; color: #fff; border: 4px solid #000; border-bottom-style: none; text-decoration: none; }