Modèl:Anivèsè Wikipedya/styles.css

/* Background color for the entire page */
body {
    background-color: #f8f8f8;
    font-family: Arial, sans-serif;
}

/* Style for the header */
.header {
    background-color: #f7b733;
    color: white;
    padding: 20px;
    text-align: center;
    font-size: 2.5em;
}

/* Banner animation */
.banner {
    margin: 20px 0;
    padding: 10px;
    background-color: #d9e021;
    color: #333;
    font-size: 1.5em;
    animation: flash 1.5s infinite;
}

@keyframes flash {
    0% { background-color: #d9e021; }
    50% { background-color: #f7b733; }
    100% { background-color: #d9e021; }
}

/* Styling for content sections */
.content h2 {
    color: #f7b733;
}

.btn-contribuer {
    background-color: #d9e021;
    color: #333;
    padding: 15px 30px;
    font-size: 1.2em;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s;
}

.btn-contribuer:hover {
    background-color: #f7b733;
}

/* Footer styling */
.footer {
    margin-top: 20px;
    padding: 10px;
    background-color: #333;
    color: white;
    text-align: center;
}