.profile-pic {
    position: absolute;
    top: 5px;
    left: 4%;
    transform: translateY(-5%);
    margin: 10px;
}

.profile-pic img {
    border-radius: 50%;
    width: 160px;
    height: 160px;
    object-fit: cover;
    border: 1px #757575;
    transition: width 1s ease, height 1s ease, transform 1s ease;
}

.profile-pic .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 50%;
    font-weight: 500;
    font-size: 20px;
    transition: width 0.5s ease, height 0.5s ease;
}

.profile-pic:hover .overlay {
    opacity: 1;
    cursor: pointer;
    transition: font-size 0.4s ease, transform 0.4s ease;
}

