<style>
        /* Réinitialisation des marges et paddings */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: Arial, sans-serif;
        }

        /* Centrage global de la page */
        body {
            
            align-items: center;
            justify-content: center;
            min-height: 100vh;
            background-color: #f4f4f4;
            text-align: center;
          
        }

        /* Effet parallax */
       .parallax-container {
            width: 100%;
            height: 1080px;
            position: relative;
            overflow: hidden;
        }

        .layer {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        .wall {
            background-image: url('https://totenfrau.net/wall.jpg');
            background-size: cover;
            background-position: center;
            z-index: 0; /* Wall est derrière tout */
            transition: transform 0.1s linear;
        }

        .toten {
            background-image: url('https://totenfrau.net/toten5.png');
            z-index: 2; /* Toten est au-dessus des nuages */
            min-height: 1080px;
            background-attachment: fixed;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
        }

        /* Titre principal */
        h1 {
            font-size: 2rem;
            margin: 20px 0;
        }

        /* Formulaire de recherche */
        form {
            width: 100%;
            max-width: 800px;
            margin-bottom: 20px;
        }

        input[type="text"] {
            width: 100%;
            padding: 10px;
            font-size: 1rem;
            border: 1px solid #ccc;
            border-radius: 5px;
            outline: none;
        }

        input[type="text"]:focus {
            border-color: #007bff;
        }

        /* Conteneur des articles */
        #articles {
            width: 100%;
            max-width: 800px;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        /* Carte d'article */
        .article {
            background: white;
            padding: 15px;
            border-radius: 10px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
        }

        .article:hover {
            transform: scale(1.02);
        }

        /* Titres des articles */
        .article h2 {
            font-size: 1.5rem;
            margin-bottom: 10px;
        }

        /* Texte des articles */
        .article p {
            font-size: 1rem;
            color: #333;
        }

        /* Responsive design */
        @media (max-width: 768px) {
            h1 {
                font-size: 1.8rem;
            }
            
            form, #articles {
                max-width: 100%;
            }

            .article {
                padding: 10px;
            }
            
            .article h2 {
                font-size: 1.3rem;
            }

            .article p {
                font-size: 0.9rem;
            }
        }
    </style>
