
body {
    background-color: #1D1E25;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    font-family: Arial, sans-serif;
    color: #b0b0b0;
    text-decoration: none;
}

.container {
    background-color: #2e2e2e;
    padding: 20px;
    border-radius: 10px;
    text-align: center; /* Centrage du texte */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.header {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 10px;
    background: radial-gradient(circle, #7849F8 0%, #8e2de2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    
}

.image-container {
    margin-bottom: 10px;
}

.image-container img {
    width: 100%;
    border-radius: 5px;
}

.en-bas-là {
    position: fixed;
    bottom: 0; 
    left: 0;
    width: 100%; 
    text-align: center; 
    background-color: #1D1E25; 
    color: white; 
    padding: 10px 0; 
}