body {
    background-color: #141414;
    color: #fff;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    text-align: center;
}

h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
}

.profiles {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.profile {
    cursor: pointer;
    text-align: center;
    width: 200px; /* Largeur fixe pour éviter les décalages */
    margin: 0 auto; /* Centrer le profil dans la colonne */
}

.profile img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    transition: transform 0.3s;
}

.profile img:hover {
    transform: scale(1.1);
}

.profile-name {
    margin-top: 0.5rem;
    font-size: 1.2rem;
    font-weight: bold;
    white-space: nowrap; /* Pour éviter que le texte du nom ne se casse */
}

.profile-title {
    margin-top: 0.2rem;
    font-size: 1rem;
    color: #bbb;
    white-space: normal; /* Permet au texte de se casser en plusieurs lignes */
    word-wrap: break-word; /* Coupe les mots trop longs */
    text-align: center; /* Centrer le texte */
}
