.profile-container {

    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    margin: 1rem 30px;
    flex-wrap: wrap;
}

.profile-card {
    width: 300px;
    background: var(--nav-bg-color);
    padding: 20px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 4px;
    box-shadow: 0 0 2px 0 #ccc;

}



.profile-icon {
    height: 100px;
    width: 100px;
    object-fit: cover;
    border-radius: 50%;
}

.profile-name {
    font-size: 24px;
    font-weight: bold;
    margin: 25px 0 10px 0;
}

.profile-position {
    font-size: 14px;
    color: #777;
}
.link{
    margin: 30px 0 0 0;
    padding: 10px 30px;
    color: var(--color4);
    background-color: var(--nav-bg-color);
    text-decoration: none;
    border: 1px solid #999;
    border-radius: 4px;
}
.link:hover{

    color: var(--color1);
}
.button {
    margin: 30px 0 0 0;
    background-color: var(--bg-color);
    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;
}