* {
    margin: 0;
    padding: 0;
    text-align: center;
}

body {
    padding: 20px;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #222;
    background: #f5f5f5;
}

h1 {
    margin-bottom: 15px;
    font-size: 2.5rem;
}

header {
    margin-bottom: 40px;
}

h2 {
    margin: 20px 0 10px;
    font-size: 1.8rem;
}

a {
    font-size: 1.1rem;
    color: black;
    margin: 10px;
    text-decoration: none;
}

a:hover {
    color: #666;
    text-decoration: underline;
}

img {
    display: inline-block;
    vertical-align: middle;
    height: auto;
    margin: 5px;
    max-width: 100%;
    border-radius: 8px;
}


.carrousel {
    display: flex;
    overflow-x: auto;
    gap: 10px;
}

.carrousel img {
    flex-shrink: 0;
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
}


.galerieeikon {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin: 20px 0;
}

.planche {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px;
    max-width: 320px;
    text-align: left;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.planche img {
    width: 100%;
    height: auto;
    margin: 0 0 10px 0;
    border-radius: 6px;
}

.legende {
    width: 100%;
    font-size: 0.9rem;
    line-height: 1.8;
    color: #444;
}