.staffContainer{
    width: 100%;
    height: fit-content;
    padding: 20px;
    display: flex;
    justify-content: center;
    
}

.staffHolder{
    background-color: rgba(1, 138, 189, 0.5);
    border: solid 1px rgb(65, 156, 156);
    width: fit-content;
    border-radius: 25px;
    padding: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
}

.staffCard{
    width: 200px;
    height: 300px;
    background-color: #DDE8F0;
    border-radius: 5px;
    overflow: hidden;
}

.playerPhoto{
    position: relative;
    height: 100%;
    width: 100%;
    background-color:rgba(54, 112, 133, 0.466) ;
    display: flex;
    justify-content: center;
}

.playerPhoto img{
    position: absolute;
    height: 100%;
    object-fit: cover;
    object-position: 20% 100%;
}

.playerInfo{
    position: absolute;
    bottom: 10px;
    left: 10px;
}

.playerName{
    font-family: Poppins;
    font-size: 15px;
    font-weight: 700;
}
.playerPosition{
    font-family: Poppins;
    font-size: 10px;

}