/* Fond par défaut pour toutes les pages */
body {
    background-color: #f8f9fa; /* gris clair */
    margin: 0;
    padding: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Footer */
footer {
    background-color: #343a40;
    color: white;
    text-align: center;
    padding: 1rem 0;
    width: 100%;
}

/* Main pour pousser le footer en bas */
main {
    flex: 1;
}

/* Sections */
section {
    margin-bottom: 40px;
}

/* Images musique */
.image-container-musique {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.img-musique {
    max-height: 200px;
    max-width: 200px;
    object-fit: cover;
    border-radius: 5px;
}

/* Images jeux vidéo */
.image-container-jv {
    display: flex;
    gap: 5px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.img-jv {
    max-height: 200px;
    max-width: 200px;
    object-fit: cover;
    border: 1px solid #ddd;
    border-radius: 5px;
}

/* Cartes */
.card {
    padding: 15px;
    box-sizing: border-box;
    background-color: #fff; /* blanc pour cartes */
    color: #000; /* texte noir */
}

.card-img-top {
    margin-bottom: 10px;
    object-fit: cover;
    max-width: 100%;
    max-height: 200px;
}

.img-competence {
    max-height: 250px;
}

.img-interet {
    max-height: 200px;
}
