body {
    background-color: #121212;
    color: #ffffff;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.pilotes-container {
    max-width: 1100px;
    margin: 50px auto;
    text-align: center;
    padding: 20px;
}

h1 {
    font-size: 2em;
    margin-bottom: 20px;
}

.pilotes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    justify-content: center;
    padding: 10px;
}

.pilote-card {
    background-color: #252525;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease-in-out;
}

.pilote-card:hover {
    transform: scale(1.05);
}

.pilote-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-size: 200%;
    background-position: center top;
    background-repeat: no-repeat;
    display: block;
    margin: 0 auto; 
}


.pilote-card h2 {
    font-size: 1.2em;
    margin: 10px 0;
}

.pilote-card .points {
    font-size: 1em;
    font-weight: bold;
}

.pilote-card .position {
    font-size: 1.2em;
    font-weight: bold;
    color: #ffffff;
}

.pilote-link {
    text-decoration: none;
    color: inherit;
}
