

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
}

header {
    background-color: #007bff;
    color: white;
    padding: 1rem;
    text-align: center;
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav a {
    color: white;
    text-decoration: none;
}

main {
    padding: 20px;
}

.blog-post {
    background: white;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5
}

a {
    color: #007BFF; /* Couleur de base du lien */
    text-decoration: none; /* Supprime le soulignement par défaut */
    font-weight: bold;
    transition: color 0.3s ease, transform 0.3s ease; /* Transition pour un effet fluide */
}

a:hover {
    color: #FF4500; /* Couleur lors du survol */
    transform: scale(1.1); /* Agrandit légèrement le lien */
    text-decoration: underline; /* Ajoute un soulignement lors du survol */
}