body {
    background-color: rgb(240, 164, 205);
    color: rgb(240, 240, 240);
    text-shadow: 2px 2px 2px black, -2px -2px 2px black, 2px -2px 2px black, -2px 2px 2px black;
    background-image: url(toile.jpg);
    background-repeat: repeat-x;
    margin: 0;
    padding: 0;
    font-family: sans-serif;
}

/* TITRES */
h1 {
    color: blueviolet;
    font-size: 3rem;
    font-family: "Neonderthaw", cursive;
    font-weight: 400;
    font-style: normal;
}

h2, h3 {
    font-family: "Neonderthaw", cursive;
}

/* STRUCTURE GLOBALE */
.navigation {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 10px;
    margin-bottom: 20px;
}

.navigation ul {
    list-style-type: none;
    display: flex;
    gap: 1rem;
    padding: 0;
}

.navigation li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.navigation li a:hover {
    text-decoration: underline;
}

.main-content {
    padding: 20px;
}

/* POUR LES BLOCS D’EXPOSITION ET DIALOGUE */
.exposition, .group-exhibition {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 15px;
    margin-bottom: 30px;
    border-radius: 10px;
}

/* STYLE DES <span> POUR ANIMATIONS OU ACCENTS */
span {
    display: inline-block;
    transition: transform 0.2s ease;
}

span:hover {
    transform: scale(1.03);
    color: #fff;
    text-shadow: 1px 1px 5px hotpink;
}
