/* STYLES GÉNÉRAUX POUR TOUS LES BODY */
body {
    background-color: rgb(240, 164, 205);
    background-repeat: repeat-x;
    background-size: cover;
    background-position: center;
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    color: rgb(240, 240, 240);
}

/* BACKGROUNDS SPÉCIFIQUES PAR PAGE */
body.background-page1 {
    background-image: url("toile5.jpeg");
}
body.background-page2 {
    background-image: url("toile.jpg");
}
body.background-page3 {
    background-image: url("toile2.jpeg");
}
body.background-page4 {
    background-image: url("toile3.jpg");
}
body.background-page5 {
    background-image: url("toile4.jpg");
}

/* 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;
}

/* 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> */
span {
    display: inline-block;
    transition: transform 0.2s ease;
}

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

article {
    background-color: blueviolet;
    margin-bottom: 45px;
    border: solid 1px red;
}

/* IMAGE */
.image_hab {
    float: left;
}

/* LIENS */
a:link { color: green; }
a:visited { color: pink; }
a:hover { color: yellow; }
a:active { color: palevioletred; }

/* MENU */
.menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
    justify-content: center;
}

.menu li {
    padding: 10px 15px;
    border-radius: 5px;
}

.menu li a {
    text-decoration: none;
    font-weight: bold;
}

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