css /* stylesheets/steampunk-statis.css */ body { background: linear-gradient(90deg, #ff0000, #ff00ff); font-family: 'Steampunk Sans', monospace; font-size: 16px; line-height: 1.2; text-shadow: 0 0 5px rgba(0, 0, 0, 0.5); -webkit-animation: steam-pulse 10s ease-in-out infinite; } @keyframes steam-pulse { 0% { background-color: #ff0000; } 100% { background-color: #ff00ff; } } h1, h2, h3 { font-family: 'Steamfunk Sans', cursive; font-weight: 900; text-shadow: 2px 0 black, -2px 0 black, 0 2px black, 0 -2px black; color: #000000; } h1 { font-size: 36px; } h2 { font-size: 24px; } h3 { font-size: 18px; } a { text-decoration: none; color: #000000; background-color: #ffffff; border-bottom: 2px solid #000000; padding: 5px 10px; text-shadow: 0 0 2px rgba(0, 0, 0, 0.5); } a:hover { background-color: #ffffff; color: #000000; border-bottom: 4px solid #000000; } img { width: 200px; height: 100px; border: 4px black solid; border-radius: 10px; transition: opacity 0.5s; animation: steam-pulse 10s ease-in-out; } img:hover { opacity: 0.5; } #clockwork { width: 300px; height: 400px; position: relative; background-color: #ffffff; border: 4px black solid; border-radius: 10px; padding: 10px; } .clockwork { font-size: 24px; font-family: 'Steamfunk Sans', cursive; color: #000000; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); } /* steampunk-statis subpages */ .clockwork a:hover { background-color: #ffffff; color: #000000; border-bottom: 4px solid #000000; } /* steampunk-statis subpages */ .clockwork a:active { background-color: #ff00ff; color: #000000; border-bottom: 4px solid #000000; }