<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Main styles */
body {
    font-family: sans-serif;
    margin: 42px;
}

header {
    background-color: #FFEB3B; /* Jaune */
    color: white;
    padding: 20px;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Ajoute une lÃ©gÃ¨re ombre au texte */
}

header2 {
    background-color: #FFEB3B; /* Jaune */
    color: white;
    padding: 20px;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Ajoute une lÃ©gÃ¨re ombre au texte */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
}

@keyframes blink {
    0%, 50%, 100% {
        opacity: 1;
    }
    25%, 75% {
        opacity: 0;
    }
}

.fas.fa-play-circle {
    animation: blink 2s infinite;
}

main {
    margin: 20px;
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 10px;
    align-items: center;
}

a:hover {
    background-color: #E57373; /* Rouge plus clair */
    color: white;
}

td.preview-image a {
    text-decoration: none; /* Retire le soulignement des liens */
    background-color: transparent; /* Fond transparent */
}

/* Animation clignotante */
@keyframes blink {
    0% { background-color: yellow; }
    50% { background-color: red; }
    100% { background-color: yellow; }
}

/* Styles au survol */
td.preview-image a:hover {
    animation: blink 0.5s infinite; /* Animation de clignotement */
}

a {
    display: block;
    padding: 10px;
    background-color: #F44336; /* Rouge */
    color: #FFEB3B; /* Jaune */
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    margin-bottom: 10px;
}

.prout {
    display: block;
    padding: 10px;
    background-color: #F44336; /* Rouge */
    color: #FFEB3B; /* Jaune */
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    margin-bottom: 10px;
}

.download {
    background-color: yellow; /* Vert clair */
    color: white;
    padding: 5px 20px;
    border-radius: 5px;
    margin-left: 10px;
    width: 30%;
    text-align: center;
}

.download a {
    margin: 2px;
}

@media only screen and (min-width: 768px) {
    main {
        grid-template-columns: 1fr 1fr;
    }

    a {
        margin-bottom: 0;
    }

    .download {
        margin-left: 0;
    }
}

/* Nouveau style pour le footer */
footer {
    background-color: #F44336; /* Rouge */
    color: #FFEB3B; /* Jaune */
    padding: 10px;
    text-align: center;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
}

@media (max-width: 768px) {
    td.download {
        display: flex;
        justify-content: center; /* Centre horizontalement */
        text-align: center;
        width: 100%; /* Assure que la cellule prend toute la largeur */
        padding: 10px 0; /* Ajoute un peu de padding pour l'espacement */
    }

    td.download .download-links {
        width: 100%; /* Prend toute la largeur */
        display: flex;
        flex-direction: column; /* Affiche les liens en colonne */
        align-items: center; /* Centre les liens */
    }
    
    td.download .download-links a {
        width: 90%; /* Assure que les liens prennent presque toute la largeur */
        margin-bottom: 5px; /* Ajoute un espacement entre les liens */
    }
}
</pre></body></html>