.gitprofile {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    display: inline-block;
    justify-content: center;
    object-fit: cover;
    border-radius: 100px;
    transition: transform 0.5s;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.7);
}

.gitprofile.medium {
    max-width: 100%;
    height: auto;
    object-fit: cover;


    /* Background blurred effect */
    opacity: 0.75;
    transition: transform 0.5s ease-in-out;
}

.gitprofile:hover {
    /*Scale up the profile on hover*/
    transform: scale(1.01);
    transition: transform 0.5s;
}