:root {
    /* Variable Bootstrap pour l'espacement (valeur par défaut de $spacer dans Bootstrap 5) */
    --bs-spacer: 1rem;
}

body {
    background-color: black;
    font-family: Arial, sans-serif;
    text-align: center;
}

h1 {
    font-size: 50px;
    color: white;
}

h2 {
    color: white;
}

h3 {
    color: white;
}

h4 {
    color: white;
}

p {
    color: white;
}

li {
    color: white;
}

.ecurie {
    background-color: black;
    width: 80%;
    max-width: 900px;
    margin: auto;
    padding: var(--bs-spacer);
    border-radius: 10px;
}

.images {
    display: flex;
    justify-content: center;
    gap: var(--bs-spacer);
    margin-top: calc(var(--bs-spacer) * 0.5);
}

.images img {
    width: 300px;
    height: auto;
    border-radius: 10px;
}