 /* Style simple pour la fiche Ted Nelson */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

header {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px;
}
nav {
    background-color: #444;
    text-align: center;
    padding: 10px;
}

nav a {
    color: white;
    margin: 0 15px;
    text-decoration: none;
}

nav a:hover {
    text-decoration: underline;
}

header img {
    width: 150px;
    border-radius: 8px;
    margin-top: 10px;
}

main {
    padding: 20px;
}

section {
    background-color: white;
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

h2 {
    color: #333;
    border-bottom: 2px solid #ccc;
    padding-bottom: 5px;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px;
}
#galerie {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 550px;
}

.galerie-container {
    display: flex;
    justify-content: center;
    gap: 100px;
    flex-wrap: wrap;
}

.galerie-container img {
    width: 250px;
    border-radius: 20px;
    transition: transform 0.2s;
}

.galerie-container img:hover {
    transform: scale(1.05);
}
