﻿.profile-container {
    display: flex;
    justify-content:center;
    height:auto;
    width:100%;
    flex-wrap: wrap;
    margin:50px auto;
}

.profile-card {
    flex: 1 1 35%;
    max-width: 350px;
    background: #fff;
    padding: 20px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 4px;
    box-shadow: 0 0 2px 0 #ccc;
    transition: .3s;
    margin:5px;
}

.profile-card:hover {
    transform: scale(1.1);
    box-shadow: 0 0 25px -5px #ccc;
}

.profile-icon {
    height: 250px;
    width: 250px;
    object-fit: cover;
    border-radius: 5px;
}

.profile-name {
    font-size: 18px;
    font-weight: bold;
    margin: 25px 0 10px 0;
}

.profile-position {
    font-size: 14px;
    color: #777;
}

.button {
    margin: 40px 0 0 0;
    padding: 10px 30px;
    color: #999;
    text-decoration: none;
    border: 1px solid #999;
    border-radius: 4px;
}

.button:hover {
    color: #fff;
    background: #748dff;
    border: 1px solid #748dff;
}

@media screen and (max-width: 1000px) {
    .profile-name {
        font-size: 14px;
    }
}

@media screen and (max-width: 800px) {
    .profile-card {
        padding: 20px 5px;
    }

    .profile-name {
        font-size: 10px;
    }
    .profile-icon {
        height: 80px;
        width: 80px;
        object-fit: cover;
        border-radius: 50%;
    }
    .profile-position {
        font-size: 10px;
    }
}