body {
    font-family: Arial, sans-serif;
    background-color: #e0f7fa;
    color: #004d40;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}
.clignotant {
            animation: clignoter 1s infinite;
        }
        @keyframes clignoter {
            0% { opacity: 1; }
            50% { opacity: 0; }
            100% { opacity: 1; }
        }
.container {
    text-align: center;
    background-color: #a5d6a7;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.logo-container {
            text-align: center; /* Centre le contenu horizontalement */
        }
        .logo-container img {
            max-width: 100%; /* Assure que l'image ne dépasse pas la largeur du conteneur */
            height: auto; /* Maintient les proportions de l'image */
        }
h1 {
    color: #00796b;
}

a {
    color: #004d40;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
}
