<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">       html,
        h1,
        h2,
        h3,
        h4,
        h5,
        h6,
        p,
        i,
        b {
            color: #fff;
        }
        
        .container {
            display: flex;
            justify-content: center;
            align-items: center;
            /* height: 80vh; */
            /* or any other height you want the container to have */
        }
        
        .contenu {
            justify-content: center;
            align-items: center;
            max-width: 960px;
            margin: 0 auto;
            color: white;
            padding: 20px;
            /* or any other height you want the container to have */
            text-align: center;
            font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
            font-size: 10pt;
        }
        
        svg {
            width: 80%;
            /* adjust as needed */
            height: 80%;
            /* ensures that the aspect ratio is maintained */
        }
        
        body {
            background-color: #00793D;
            margin: 0;
        }
        
        a {
            color: white;
        }
        /* a:link {
            text-decoration: none;
        } */
        
        .center {
            align-items: center;
            text-align: center;
        }
        
        p {
            text-align: justify;
        }
        
        .vote {
            font-size: 26px;
            background-color: white;
            color: #130708;
            padding: 20px;
            /* margin: 20px 0px; */
            text-align: center;
            border-radius: 10px;
        }
        
        .link {
            text-decoration: underline;
            color: black;
        }


        .social-links {
    margin: 20px 0;
    text-align: center;
}

.social-links a {
    display: inline-block;
    margin: 0 10px;
    color: #333;
    font-size: 24px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #007bff; /* Couleur au survol - vous pouvez la changer */
}

/* Couleurs spécifiques pour chaque réseau social au survol */
.fa-facebook-f:hover {
    color: #3b5998;
}

.fa-instagram:hover {
    color: #e1306c;
}

.fa-youtube:hover {
    color: #ff0000;
}

.fa-twitter:hover {
    color: #1da1f2;
}</pre></body></html>