.playerCard {
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: start;
  gap: 16px;
  .skin-container{ 

    width: 39px;
    height: 39px;
    clip-path: border-box;
    --webkit-clip-path: border-box;
    position: relative;
    border: 0.2px solid #acacac;
    overflow: hidden;
    border-radius: 50%;
        img{
    width: 63px;
    height: 63px;
    position: absolute;
    left: 50%;
    transform: translate(-50%);
    top: -1px;
        }
  }
  .letter {
    width: 39px;
    height: 39px;
    background: var(--dark-blue);
    border-radius: 50%;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  > div {
    display: flex;
    flex-direction: column;
    align-items: start;
    .pseudo {
      color: var(--dark-blue);
    }
  }
}
