body { font-family: 'Arial', sans-serif; background-color: #1a1a2e; color: #ffffff; line-height: 1.6; margin: 0; padding: 0; } .container { max-width: 1200px; margin: 0 auto; padding: 20px; } header { background-color: #16213e; padding: 20px; border-radius: 10px; margin-bottom: 20px; } h1, h2 { color: #e94560; } nav ul { list-style-type: none; padding: 0; } nav ul li { display: inline; margin-right: 20px; } nav ul li a { color: #ffffff; text-decoration: none; } section { background-color: #16213e; padding: 20px; border-radius: 10px; margin-bottom: 20px; } #animeList, #genreList, #quizOptions { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 20px; } .anime-item, .genre-item, #quizOptions button { background-color: #0f3460; color: #ffffff; padding: 10px 15px; border-radius: 5px; cursor: pointer; transition: background-color 0.3s; border: none; } .anime-item:hover, .genre-item:hover, #quizOptions button:hover { background-color: #e94560; } .anime-item.selected, .genre-item.selected { background-color: #e94560; } button { background-color: #e94560; color: #ffffff; border: none; padding: 10px 20px; border-radius: 5px; cursor: pointer; font-size: 1rem; transition: background-color 0.3s; margin-right: 10px; } button:hover { background-color: #ff6b6b; } #recommendations, #quoteContainer, #quizContainer { background-color: #0f3460; padding: 20px; border-radius: 5px; margin-top: 20px; } #quoteText { font-style: italic; font-size: 1.2em; margin-bottom: 10px; } #quoteAuthor { font-weight: bold; text-align: right; } footer { text-align: center; margin-top: 40px; color: #888; }