.playerList{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    position: relative;
    gap: 1rem;
}

.playerList > .player{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.playerList > .player:hover{
    background-color: rgb(213, 210, 186);
}