.profile-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.profile-item {
    width: 150px;
    text-align: center;
    border: 2px solid #00bcd4;
    border-radius: 10px;
    padding: 20px;
    background-color: #e0f7fa;
    transition: transform 0.3s ease;
}

.profile-item:hover {
    transform: scale(1.1);
}

.profile-photo {
    font-size: 4em;
    margin-bottom: 10px;
}

.profile-name {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2em;
    font-weight: 600;
    color: #37474f;
}

.profile-title{
    font-family: 'Poppins', sans-serif;
    font-size: 0.8em;
    font-weight: 600;
    color: #37474f;
}


