/* style.css */ /* Global Styles */ body { margin: 0; font-family: Arial, sans-serif; background-color: #2c2f33; color: #ffffff; overflow: auto; } body a { color: #7289da; text-decoration: none; } body a:hover { text-decoration: underline; } header { background-color: #23272a; padding: 10px; position: fixed; top: 0; width: 100%; display: flex; justify-content: center; z-index: 1000; } nav a { margin: 0 15px; color: #ffffff; text-decoration: none; font-weight: bold; } nav a:hover { color: #7289da; } .container { padding-top: 70px; max-width: 800px; margin: auto; } /* Page-specific Styles */ .home-background { height: 100vh; width: 100%; position: relative; background-size: cover; background-position: center; transition: background-image 1.5s ease-in-out; } .home-content { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); text-align: center; color: #ffffff; background: rgba(0, 0, 0, 0.5); padding: 20px; border-radius: 10px; } .home-content h1 { font-size: 48px; margin: 0; } .home-content p { font-size: 24px; } /* Description Page */ ol { background: #40444b; padding: 20px; border-radius: 10px; } ol li { margin-bottom: 10px; } /* List Page */ ul { list-style: none; padding: 0; } ul li { margin-bottom: 10px; } ul li a { color: #7289da; text-decoration: none; } ul li a:hover { text-decoration: underline; } /* Footer */ footer { padding: 10px; text-align: center; margin-top: 20px; color: #99aab5; }