/* Page width de 60% */
.width-60 {
    width: 60%;
    margin-left: auto;
    margin-right: auto;
}

.contenaire {
    background-color: #ee4848;
    margin-top: 80px;
    padding: 2em;
    color: white;
}
        .contenaire h1 {
            font-size: 3em;
            margin-top: 0;
            margin-bottom: 0;
        }
        .contenaire p {
            font-size: 1.2em;
        }
.vote-space {
    display: flex;
    flex-direction: row;
    border-bottom: #333 solid 1px;
    padding-bottom: 20px;
}
.vote-space img {
    margin-left: 1.2em;
}
.vote-link ul {
    display: flex;
    flex-wrap: wrap;
    padding-left: 0;
}
    .vote-link li {
        background-color: #E5E7E9;
        padding: 1em;
        list-style: none;
        margin: 1em;
    }
        .vote-link a {
            text-decoration: none;
            color: black;
        }
.padding-top-20 {
    padding-top: 20px;
}
/* Tableau de vote */
.tableau__content h2 {
    text-transform: uppercase;
    display: flex;
    justify-content: center;
}
table {
    border-collapse: collapse;
}
table tbody {
    background-color: #6f5925;
    color: white;
    font-weight: bold;
}
.player-vote {
    border: solid 5px #fff;
    position: block;
}
.tableau__content span {
    position: relative;
    top: -25px;
    padding-left: 5px;
}
.tableau {
    display: flex;
    justify-content: center;
    gap: 10rem;
}
.tableau img {
    width: 48px;
    border-radius: 50%;
    margin-top: 10px;
    margin-bottom: 10px;
    margin-left: 5px;
}
.player-vote td {
    text-align: center;
}
th {
    text-transform: uppercase;
    width: 150px;
}
tbody tr:nth-child(1) {
    background-color: #ffae00;
}
tbody tr:nth-child(2) {
    background-color: #808080;
}
tbody tr:nth-child(3) {
    background-color: #b07824;
}

/* Media querie */
@media screen and (max-width: 1100px) {

    /* Image(cible) en bas */
    .vote-space {
        flex-direction: column;
    }
    .vote-space img {
        margin-left: 0;
    }

    /* Tableau de vote */
    .tableau {
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
    }
    table {
        margin-left: auto;
        margin-right: auto;
    }
}
@media screen and (max-width: 770px) {

    /* width 80% */
    .width-60 {
        width: 80%;
    }
}