Power Outage: The Goals

A site about setting new lows in productivity

Goals are like power lines. They connect the dots, but only if they're not too busy being out.

/* CSS */ body { background-color: #ff0000; color: #000000; font-family: "Comic Sans", sans-serif; margin: 0; padding: 0; } .header { background-color: #333; color: #ffffff; padding: 1em; border-bottom: 4px solid #000000; } .tagline { font-weight: bold; color: #33ff00; text-align: center; font-size: 1.5em; border-bottom: 4px solid #000000; } .container { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 2em; border: 4px solid #000000; border-radius: 10px; background-color: #ffffff; box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); } li { list-style: none; margin: 1em 0; padding: 1em; border-bottom: 4px solid #000000; } a { color: #000000; text-decoration: none; transition: all 0.2s ease; } a:hover { background-color: #ff0000; color: #000000; padding: 0.5em; }