/* POLICE GLOBALE */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

body {
    background-color: black;
    color: white;
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
}

/* HEADER */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

/* NAVIGATION */
ul {
    background-color: #111;
    padding: 15px 25px;
    border-radius: 4px;
    display: flex;
    gap: 20px;
    align-items: center;
}

li {
    list-style: none;
    display: inline;
    text-align: center;
    transition: 0.3s ease;
}

li:hover {
    background-color: white;
    padding: 10px 8px;
    border-radius: 5px;
}

li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s ease;
}

li:hover a {
    color: black;
}

/* TITRES */
h1, h2 {
    text-align: center;
    margin-bottom: 20px;
}

/* SECTIONS AVEC BLEU NÉON */
section {
    background-color: #111;
    border-left: 4px solid #00C8FF; /* Bleu néon */
    padding: 25px;
    border-radius: 6px;
    margin: 40px auto;
    max-width: 900px;
}

/* IMAGES */
section img {
    display: block;
    margin: 0 auto 20px auto;
    border-radius: 8px;
}

/* GALERIE D'IMAGES */
.galerie {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.galerie img {
    width: 300px;
    border-radius: 8px;
    transition: 0.3s ease;
}

.galerie img:hover {
    transform: scale(1.05);
}

/* FOOTER */
footer {
    text-align: center;
    padding: 25px;
    margin-top: 40px;
    background-color: #111;
    border-top: 1px solid #333;
    color: #ccc;
}

footer p {
    margin: 5px 0;
    font-size: 14px;
}

.footer-links {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-links a {
    color: #888;
    text-decoration: none;
    transition: 0.3s ease;
}

.footer-links a:hover {
    color: #00C8FF; /* Accent néon */
}

/* GIF */
.gif-container {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.gif-container img {
    width: 300px;
    border-radius: 8px;
}