body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #ffffff;
    color: #5c3a2d;
    overflow: hidden;
}

.container {
    text-align: center;
    animation: fadeIn 3s ease-in-out;
}

/* Correction de la taille du logo et ajout de l'animation */
.logo {
    width: 350px; /* Ajustez la taille selon vos besoins */
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

.intro-text {
    font-size: 1.2rem;
    line-height: 1.6;
    margin: 0 10%;
    animation: slideIn 2s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}