.players {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25em;
    justify-content: center;
    padding: 1.25em;
}

.player {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 1em;
    width: 100%;
    max-width: 16rem;
    box-shadow: 0 0.125em 0.375em rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.2s ease;
}

.player:hover {
    transform: translateY(-5px);
}

.player-image {
    width: 100%;
    height: auto;
    border-radius: 0.5em;
    margin-bottom: 0.625em;
}