Aller au contenu

Poképédia subit actuellement quelques soucis techniques !
L'équipe est au courant des problèmes et fait le nécessaire pour les arranger le plus rapidement possible. Merci de votre compréhension !

Utilisateur:MDracaufeuZ

De Poképédia

<!DOCTYPE html> <html lang="fr"> <head>

 <meta charset="UTF-8" />
 <meta name="viewport" content="width=device-width, initial-scale=1.0" />
 <title>Ma Poképédia</title>
 <style>
   body {
     margin: 0;
     font-family: 'Segoe UI', Tahoma, sans-serif;
     background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
     color: #ffffff;
   }
   header {
     padding: 40px 20px;
     text-align: center;
     background: rgba(0, 0, 0, 0.4);
     box-shadow: 0 10px 30px rgba(0,0,0,0.5);
   }
   header h1 {
     font-size: 3rem;
     margin: 0;
     letter-spacing: 2px;
   }
   header p {
     font-size: 1.2rem;
     opacity: 0.9;
   }
   main {
     max-width: 1100px;
     margin: auto;
     padding: 40px 20px;
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
     gap: 30px;
   }
   .card {
     background: rgba(255, 255, 255, 0.08);
     border-radius: 20px;
     padding: 25px;
     box-shadow: 0 20px 40px rgba(0,0,0,0.4);
     transition: transform 0.3s ease, box-shadow 0.3s ease;
   }
   .card:hover {
     transform: translateY(-8px);
     box-shadow: 0 30px 60px rgba(0,0,0,0.6);
   }
   .card h2 {
     margin-top: 0;
     font-size: 1.6rem;
     border-bottom: 2px solid rgba(255,255,255,0.2);
     padding-bottom: 10px;
   }
   .badge {
     display: inline-block;
     padding: 6px 14px;
     border-radius: 999px;
     background: #7f5af0;
     margin: 6px 6px 0 0;
     font-size: 0.9rem;
     font-weight: bold;
   }
   .dragon {
     background: linear-gradient(135deg, #7f00ff, #e100ff);
   }
   footer {
     text-align: center;
     padding: 20px;
     opacity: 0.7;
     font-size: 0.9rem;
   }
 </style>

</head> <body>

<header>

Ma Poképédia

Passion Pokémon • Univers • Jeux • Anime

</header>

<main>

 
 
 
 
 
 

</main>

<footer>

 © 2025 • Ma Poképédia personnelle • Powered by passion Pokémon

</footer>

</body> </html>