body {
    margin: 0;
    background-color: #1e1e1e;
    color : white;
}

* {
    font-family: 'Press Start 2P', cursive;
}

.img-half {
    width: 50%;
}

.headerAccueil {
    background: url("../img/background/2025-08-10.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 0 0;
    animation: moveBackground 30s ease-in-out infinite;
    display: flex;
    justify-content: space-around;
    align-items: center;
    text-align: center;
    flex-direction: column;
    height: 500px;
    width: 100%;
    color: white;
    text-shadow: 5px 5px #292929;
    /* text-shadow: 2px 0 0 #000000, 2px 2px 0 #000000, 0 2px 0 #000000, -2px 2px 0 #000000, -2px 0 0 #000000, -2px -2px 0 #000000, 0 -2px 0 #000000, 2px -2px 0 #000000; */
}
@keyframes moveBackground {
    0% {
        background-position: 0 0;
    }
    50% {
        background-position: 100% 100%;
    }
    100% {
        background-position: 0 0;
    }
}

.headerAccueil div {
    width: 50%;
    display: flex;
    justify-content: space-evenly;
}
@media screen and (max-width: 825px) {
    .headerAccueil div {
        width: 100%;
        flex-direction: column;
        justify-content: center;
    }
}

.headerSection {
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: space-around;
    font-size: x-large;
    background: none;
    display: flex;
    justify-content: space-around;
    align-items: center;
    text-align: center;
    padding: 20px;
    color: white;
    text-shadow: 5px 5px #292929;
}
.headerSection img {
    width: 20%;
}

code {
    background-color: #6e6e6e;
    padding: 10px;
    color:white;
    text-shadow: 3px 3px #292929;
    font-size: large;
    border-color: #000000;
    border-style: solid;
    border-width: 2.5px;
    border-radius: 3px;
    /* filter: drop-shadow(2px 2px 0px #000000); */
}

.button {
    transition: 0.3s;
    background-color: rgb(255, 255, 255);
    padding: 10px;
    color:black;
    font-size: small;
    text-shadow: none;
    filter: drop-shadow(5px 5px 0px #000000);
    border-color: #000000;
    border-style: solid;
    border-width: 3px;
    text-decoration: underline;
    width: fit-content;
    margin: 15px;
}
.button:hover {
    transition: 0.3s;
    filter: drop-shadow(10px 10px 0px #000000);
}

section {
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: space-around;
}

.textHalf {
    font-size: larger;
}

.TextWithButton {
    max-width: 30%;
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
}

footer {
    background-color: #000000;
    color: white;
    padding: 1px;
    font-size: x-small;
}

ul {
    list-style-type: none;
    padding: 0 50px 0 50px;
}

li {
    display: flex;
    border-radius: 10px 10px 10px 10px;
    border-style: solid;
    border-color: white;
    margin: 10px 30px 10px 30px;
    padding: 10px;
    align-items: center;
}

.pers {
    perspective: 800px;
}

.img-peuple {
    height:100px;
    margin-left: 10px;
    margin-right: 10px;
    transition: all 0.3s;
    z-index: 1;
}
.img-peuple:hover {
    transform: scale(7);
    z-index: -1;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.description-peuple {
    color: gray;
    font-style: italic;
    font-size: x-small;
}

.liste-joueurs-peuple {
    display: flex;
}

.joueur-peuple-txt {
    padding-right: 10px;
    font-size: xx-small;
    display: flex;
    align-items: center;
}

.joueur-peuple {
    margin-right: 10px;
    font-size: xx-small;
    background-color: white;
    color: black;
    padding: 5px;
    border-radius: 100px;
    display: flex;
    align-items: center;
}

@media screen and (max-width: 600px) {
    .peupleUl {
        padding: 0 3px 0 3px;
    }
    .peupleUl > li {
        margin: 10px 3px 10px 3px;
    }
}