css /* style.css */ body { background-image: linear-gradient(to bottom, #ff00ff, #ff00cc, #ff0099); font-family: 'Bebas Neue', sans-serif; font-size: 24px; color: #000000; } a { text-decoration: none; color: #00ff00; border-bottom: 4px solid #000000; text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5); } a:hover { background: #000000; color: #00ff00; border-bottom: 4px solid #00ff00; text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5); } h1 { font-family: 'Bebas Neue', sans-serif; font-size: 36px; color: #000000; border-bottom: 4px solid #000000; text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5); padding-bottom: 10px; } #logo { background: #000000; width: 100px; height: 100px; border-radius: 50%; position: absolute; bottom: 10px; right: 20px; background-image: url(https://example.com/quantum-logo.png); background-size: 100px 100px; background-repeat: no-repeat; background-position: center; } /* Dr. McFluct */ #team { display: flex; align-items: center; padding: 20px; background: #000000; border: 4px solid #000000; border-radius: 10px; box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5); width: 80%; margin: 20px auto; position: relative; } #team img { width: 200px; height: 200px; border: 4px solid #000000; border-radius: 50%; margin: 20px 10px; position: relative; } #team p { text-align: center; font-size: 18px; color: #000000; margin: 20px 0; } /* Quantum Fluctuation Forecasts */ #forecast { display: flex; align-items: center; padding: 20px; background: #000000; border: 4px solid #000000; border-radius: 10px; box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5); width: 80%; margin: 20px auto; position: relative; background-image: linear-gradient(to bottom, #00ff00, #00ffcc, #00ff00); } #forecast p { font-size: 18px; color: #000000; margin: 20px 0; } /* Subpages */ #subpages { display: flex; flex-direction: column; padding: 20px; background: #000000; border: 4px solid #000000; border-radius: 10px; box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5); width: 100%; margin: 20px auto; } #subpages a { font-size: 18px; color: #000000; margin: 10px 0; text-decoration: none; border-bottom: 4px solid #000000; } #subpages a:hover { background: #000000; color: #00ff00; border-bottom: 4px solid #00ff00; } #subpages a.current { background: #00ff00; color: #000000; border-bottom: 4px solid #000000; }