.cardContainer {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(15em, 1fr));
    gap: 100px;
    margin-bottom:200px;
    place-items: center;
    margin-top: 50px;
}

.profile-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px;
    border-radius: 50px;
    max-width: 15em;
    max-height: 15em;
    min-width: 15em;
    min-height: 15em;
    background-color: #13111c;
}

.profile-card small
{
    color: gray;
}
.profile-img {
    width: 100px;
    height: 100px;
    object-fit: cover;
}

.profile-name {
    color: #fff;
    font-size: 1.2rem;
    margin-top: 10px;
    font-family: Arial, sans-serif;
}

.profile-card-link {
    text-decoration: none;
    display: inline-block;
}

.profile-card-link .profile-card {
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.profile-card-link .profile-card:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(255, 156, 63, 0.2);
}

@media (max-width: 1100px) {
    .cardContainer {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
        padding: 20px;
    }
}

@media (max-width: 750px) {
    .cardContainer {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
        padding: 20px;
    }
}