* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Page d'accueil */
.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    position: relative;
    width: fit-content;
    margin: 0 auto;
}

/* Page de politique de confidentialité */
.privacy-content {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    line-height: 1.6;
    flex: 1;
}

.privacy-content h1 {
    margin-top: 0;
    margin-bottom: 2rem;
    text-align: center;
}

main {
    display: flex;
    flex-direction: column;
    flex: 1;
}

@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(-5px) rotate(-5deg);
    }
    75% {
        transform: translateX(5px) rotate(5deg);
    }
}

.logo {
    /* max-width: 80%;   */
    width: 800px;    /* Définit une largeur fixe */
    height: auto;    /* Maintient le ratio d'aspect */
    position: relative;
    z-index: 2;
    /* animation: shake 0.3s ease-in-out; 
    animation-iteration-count: 2; 
    animation-delay: 1.5s;
    animation-play-state: running; */
}

.logo-background {
    position: absolute;
    /* top: 0; */
    left: 0;
    width: 800px;
    height: 453px;
    z-index: 1;
    object-fit: contain;
}

footer {
    text-align: center;
    padding: 20px 0;
    font-size: 1.1rem;
}

footer a {
    color: #666;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

h1 {
    margin-top: 0;    /* Reset la marge supérieure */
    margin-bottom: 2rem;
    text-align: center;
    position: relative; /* Assure que le h1 reste dans son conteneur */
}
