@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300&display=swap');

body2 {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: linear-gradient(to right, #00093c, #2d0b00);
    font-family: 'Quicksand', sans-serif;
}

.profile-card {
    width: 200px;
    height: 200px;
    background: #fff;
    padding: 30px;
    border-radius: 50%;
    box-shadow: 0 0 22px #3336;
    transition: .6s;
}

.profile-card:hover {
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    height: 300px;
}

.profile-card img2 {
    width: 100%;
    height: 100%;
    transition: .6s;
    z-index: 10;
}

.profile-card:hover img2 {
    transform: translateY(-60px);
}

img2 {
    width: 100%;
    border-radius: 50%;
    box-shadow: 0 0 22px #3336;
    transition: .6s;
	padding:10;
}

.profile-card:hover img2 {
    border-radius: 10px;
}

.caption {
    text-align: center;
    transform: translateY(-70px);
    opacity: 0;
    transition: .6s;
}

.profile-card:hover .caption {
    opacity: 1;
}

.caption h7 {
    font-size: 32px;
    font-weight: 600;
}

.caption p2 {
    position: relative;
    display: flex;
    width: 100%;
    justify-content: center;
    top: -25px;
    font-size: 15px;
    color: #0c52a1;
    
}

.social-links {
    display: flex;
    width: 100%;
    justify-content: space-around;
    position: relative;
    top: -35px;
}

@media only screen and (max-width: 700px) {
    .profile-card {
        margin-top: 45px;
    }

}