/* Reset des marges et des paddings */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Style de base pour le corps de la page */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f9f9f9;
    color: #333;
}

/* En-tête */
header {
    background-color: #a32424;
    color: #fff;
    padding: 20px;
    text-align: center;
}

header h1 {
    margin: 0;
}

/* Navigation */
nav ul {
    list-style-type: none;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
}

/* Sections */
section {
    background-color: #fff;
    margin: 20px auto; /* Ajout de la marge verticale et centrage horizontal */
    padding: 20px;
    border-radius: 5px;
    max-width: 800px; /* Largeur maximale pour éviter un étirement excessif */
}

section h2 {
    margin-bottom: 10px;
    color: #333;
}

/* Liste des versions */
.list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; /* Espacement égal entre les blocs */
}

.list-item {
    width: calc(45% - 10px); /* Largeur des éléments avec espace entre eux */
    margin-bottom: 10px;
}

.list-item a {
    display: block;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    text-decoration: none;
    color: #333;
    background-color: #f9f9f9;
}

.list-item a:hover {
    background-color: #eaeaea;
}

/* Pied de page */
footer {
    background-color: #333;
    color: #fff;
    padding: 20px;
    text-align: center;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
}
