#Committee {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 30%;
    height: 100%;
    flex-wrap: wrap;
    margin: 25px;
}

.profile {
    clear: both;
    box-shadow: 0 4px 30px 0 rgba(0, 0, 0, 0.5);
    max-width: 300px;
    min-width: 300px;
    margin: auto;
    text-align: center;
    color: black;
    background-color: white;
    overflow: hidden;
    border-radius: 10px;
    transform: scale(1);
    transition: transform 0.2s ease;
    margin: 20px 50px;
}

.profile:hover {
    transform: scale(1.025);
}

.profile-image {
    width: 100%;
}

.profile-title {
    color: grey;
    font-size: 18px;
}
  
.profile a {
    border: none;
    outline: 0;
    display: inline-block;
    padding: 8px 0;
    color: white;
    background-color: #000;
    text-align: center;
    cursor: pointer;
    width: 100%;
    font-size: 18px;
    text-decoration: none;
    background-color: #164064;
    height: 100%;
}
  
.profile a:hover {
    opacity: 0.7;
}