/* Marge par défaut */
body {
    margin: 0;
}

/* Hauteur minimale de la page */
html, body {
    height: 100%;
    font-family: 'Poppins', sans-serif !important;
}

h1{
    font-family: 'Poppins', sans-serif !important;
}

h2{
    font-family: 'Poppins', sans-serif !important;
}

p{
    font-family: 'Poppins', sans-serif !important;
}

a{
    text-decoration: none;
    color: black;
}

/* Style pour le header */
header {
    background-color: #fff;
    top: 0;
    z-index: 1000;
}

/* Style pour la navbar */
.navbar {
    padding: 1rem;
}

nav {
    box-shadow: 0 4px 2px -2px rgba(0,0,0,0.1);
}

/* Style pour le titre du blog */
.navbar-brand {
    font-size: 1.5rem;
    font-weight: bold;
}

/* Style pour les liens de la navbar */
.navbar-nav .nav-link {
    font-size: 1.2rem;
}

/* Style pour la section principale */
main {
    flex: 1;
}

/* Style pour les articles */
.card {
    border: none;
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    transform: translateY(-2px);
}

.card-img-top {
    height: 200px;
    object-fit: cover;
    width: 100%;
}

.card-title {
    font-weight: bold;
}

.card-text {
    font-size: 1.1rem;
}

.card-footer {
    background-color: #fff;
    border-top: none;
    padding: 1rem;
}

.container {
    margin: auto;
    width: 90%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}




.row {
    width: 100%;
}

.top {
    margin-top: 75px;
    display: flex;
    justify-content: center;
}

/* Style pour le bouton "Lire la suite" */

/*.btn-primary {
    background-color: #0d6efd;
    border-color: #0d6efd;
    padding: 25px;
}*/

/*.btn-primary:hover {
    background-color: #0b5ed7;
    border-color: #0b5ed7;
}*/

@media (max-width: 571px) {
    .top-div, .top {
        width: 90%;
    }
}