/* Style pour la carte du monde */
#intro-cartes {
    text-align: center;
	background-color: rgba(0, 0, 0, 0.7);
    max-width: 1200px; /* Set a max-width for the content */
    margin: 20px auto 20px auto; /* Center the section and add bottom margin */
}

#cartes img {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* General section margin */
section {
    margin-bottom: 20px;
}

section h1 {
    text-align: center;
    margin-bottom: 20px; /* Space between the title and the cards */
    font-size: 2.5em;
    color: #f5a623;
    width: 100%; /* Ensure the title spans full width */
}

/* Title styling for sections */
section h2 {
    text-align: center;
    margin-bottom: 20px; /* Space between the title and the cards */
    font-size: 2em;
    color: #f5a623;
    width: 100%; /* Ensure the title spans full width */
}

.btn {
    display: inline-block; /* Permet de centrer l'élément */
    padding: 10px 20px; /* Espacement autour du texte */
    background-color: #f5a623; /* Couleur de fond du bouton */
    color: #fff; /* Couleur du texte */
    text-decoration: none; /* Pas de soulignement */
    border-radius: 5px; /* Coins arrondis */
    transition: background-color 0.3s; /* Transition douce pour l'effet de survol */
    margin-top: 10px; /* Espace au-dessus du bouton */
}

.btn:hover {
    background-color: #d89b1a; /* Couleur du bouton au survol */
}