/* style.css */ @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap'); /* Global Styles */ body { margin: 0; font-family: 'Inter', 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; text-decoration: none; } .container { padding-top: 70px; max-width: 800px; margin: auto; } /* Carousel Styles */ .carousel { position: relative; width: 100%; height: 100vh; overflow: hidden; } #carousel-container { position: relative; width: 100%; height: 100%; } #carousel-image { width: 100%; height: 100%; object-fit: cover; transition: opacity 1s ease; } #overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color: black; opacity: 0; transition: opacity 1s ease; z-index: 1; } .carousel-text { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); color: #ffffff; text-align: center; background-color: rgba(35, 39, 42, 0.9); padding: 20px; border-radius: 10px; z-index: 2; } .carousel-text h1 { font-size: 3em; margin: 0 0 10px; } .carousel-text p { font-size: 1.5em; } /* 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; } /* Liste page */ .anime-list { list-style-type: none; padding: 0; margin: 20px; font-size: 1rem; color: #b9bbbe; } .anime-list li { margin-bottom: 10px; } .anime-list a { color: #7289da; text-decoration: none; transition: color 0.3s ease; } .anime-list a:hover { color: #ffffff; } .anime-list a:visited { color: #a58dff; } /* Footer */ footer { padding: 10px; text-align: center; margin-top: 20px; color: #99aab5; }