.bloc_menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 7.5%;
    background-color: white;
    height: 80%;
    width: 25%;
    margin-top: 5%;
    border-radius: 5%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.parent {
    display: flex;
    justify-content: center;
    height: 73%;
    width: 100%;
}

body {
    background-color: #f4f4f4;
}

.butte {
    display: flex;
    justify-content: center;

}

a {
    text-decoration: none;
    color: white;
}

.colorSelector {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.Couleur {
    display: flex;
}

.Select {
    display: flex;
}

.rouge {
    display: flex;
    justify-content: center;
    padding-top: 5%;
    padding-bottom: 5%;
    background-color: var(--red-color);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 85%;
    height: 100%;
}

.rouge:hover {
    background-color: var(--red-color-transparent);
}

.vert {
    display: flex;
    justify-content: center;
    padding-top: 5%;
    padding-bottom: 5%;
    background-color: var(--green-color);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 85%;
    height: 100%;
}

.vert:hover {
    background-color: var(--green-color-transparent);
}

.bleu {
    display: flex;
    justify-content: center;
    padding-top: 5%;
    padding-bottom: 5%;
    background-color: var(--blue-color);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 85%;
    height: 100%;
}

.bleu:hover {
    background-color: var(--blue-color-transparent);
}

.retour {
    width: 50%;
    background-color: var(--selected-color);
}

.titrePuntos {
    display: flex;
    align-self: center;
    padding-top: -1px;
    padding-bottom: -1px;
    margin-top: 10px;
}

.nomJoueurHeader {
    display: flex;
    align-self: flex-start;
    font-size: 12px;
    margin-top: 1px;
    margin-bottom: 1px;
}

.logoEtNomJoueur {
    display: flex;
    align-items: center;
    flex-direction: row;
}

.logoJoueur {
    display: flex;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin-right: 5px;
    margin-left: 5px;
}