/* Styles généraux */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #4a90e2, #50e3c2);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    text-align: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.3);
}



h1 {
    font-size: 2.5rem;
    margin: 20px 0;
}

p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin: 10px 0;
}
.contact{
    opacity: 0;
}
.contact a {
    color: #50e3c2;
    text-decoration: none;
    font-weight: bold;
}

.contact a:hover {
    text-decoration: underline;
}

/* Barre de progression */
.progress-bar {
    margin-top: 20px;
    width: 100%;
    height: 10px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    overflow: hidden;
    position: relative;
}

.progress {
    width: 50%; /* Ajustez la largeur pour montrer la progression */
    height: 100%;
    background: #50e3c2;
    animation: progress-animation 3s ease-in-out infinite;
}

/* Animation de la barre */
@keyframes progress-animation {
    0% { width: 0; }
    50% { width: 80%; }
    100% { width: 0; }
}
