/* Style général */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: linear-gradient(270deg, #000428, #004e92);
    background-size: 400% 400%;
    animation: gradientAnimation 10s ease infinite;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
}

/* Animation du dégradé */
@keyframes gradientAnimation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Conteneur principal */
.container {
    max-width: 80%;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 15px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 128, 255, 0.5); /* Halo lumineux */
    animation: fadeIn 1s ease-in-out, haloAnimation 1.5s infinite alternate; /* Ajout de l'animation halo */
}

/* Animation du halo lumineux */
@keyframes haloAnimation {
    0% {
        box-shadow: 0 0 20px rgba(0, 128, 255, 0.5), 0 0 40px rgba(0, 128, 255, 0.3);
    }
    100% {
        box-shadow: 0 0 40px rgba(0, 128, 255, 0.8), 0 0 60px rgba(0, 128, 255, 0.5);
    }
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Style pour l'image */
.logo {
    width: 100px; /* Ajustez la taille selon vos besoins */
    border-radius: 15px; /* Applique le border-radius */
    margin: 15px 0; /* Ajoute de l'espace autour de l'image */
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.5), 0 0 40px rgba(0, 255, 255, 0.3); /* Ombre de base */
    animation: haloAnimation 1.5s infinite alternate; /* Animation scintillante */
}

/* Animation du halo lumineux pour l'image */
@keyframes haloAnimation {
    0% {
        box-shadow: 0 0 20px rgba(0, 255, 255, 0.5), 0 0 40px rgba(0, 255, 255, 0.3); /* Ombre cyan */
    }
    100% {
        box-shadow: 0 0 40px rgba(0, 255, 255, 1), 0 0 60px rgba(0, 255, 255, 0.7); /* Ombre cyan scintillante */
    }
}

/* Liens */
.links {
    margin-top: 10px;
}

.link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    margin: 10px 0;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    text-decoration: none;
    color: #ffffff;
    transition: background-color 0.3s, transform 0.3s;
}

.link:hover {
    background-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 400px) {
    .container {
        width: 90%;
    }
}
