* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    transition: 0.3s;
}

body {
    font-family: "Montserrat";
    background-color: #e5e4e4;
    color: #fdfdfd;
}

.card {
    max-width: 85%;
    margin: 100px auto 0;
    background-color: #b8b8b6;
    box-shadow: 0 10px 90px #00000024;
    text-align: center;
    font-size: 20px;
    border-radius: 15px;
}

.card .card-header {
    position: relative;
    height: 48px;
}


.card .card-header .profile-img {
	background-color: #ffffff;
    width: 150px;
    height: 150px;
    border-radius: 1000px;
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 8px solid #2b73a9;
    box-shadow: 0 0 20px #00000033;
}

.card .card-header .profile-img:hover {
    width: 170px;
    height: 170px;
    border: 8px solid #74acdf;
}


.card .card-body {
    padding: 10px 40px;
}

.card .card-body .name {
    margin-top: 40px;
    font-size: 26px;
    font-weight: bold;
    color: #fff;
}

.card .card-body .mail {
    font-size: 22px;
    color: #fff;
}

.card .social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.card .social-links .social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    width: 48px;
    background-color: #2b73a9;
    color: #ffffff;
    font-size: 28px;
    border-radius: 100%;
    text-decoration: none;
    margin: 0 13px 20px 5px;
}

.card .social-links .social-icon:last-child {
    margin-right: 0;
}

.card .social-links .social-icon:hover {
    background-color: #318cdf;
    height: 55px;
    width: 55px;
    text-decoration: none;
}

.btn {
	color: #fff;
	width: 130px;
	height: 42px;
	outline: none;
	border: none;
	display: block;
	cursor: pointer;
	font-weight: 300;
	margin-left: auto;
	margin-right: auto;
	border-radius: 70px;
	box-shadow: 0 13px 26px rgba(#000, .16), 0 3px 6px rgba(#000, .16);
	background-color: #2b73a9;
	font-size: 20px;
    font-weight: bold;
}

.btn:hover {
	background-color: #318cdf;
    height: 50px;
    width: 150px;
    text-decoration: none;
}

.card .card-footer {
	margin: 35px auto 0;
    background-color: #2b73a9;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    padding: 20px 0 20px 0;
}

.card .card-footer .count {
    font-size: 14px;
}


@media screen and (max-width: 575px) {
    .card {
        width: 96%;
    }

    .card .card-body {
        padding: 10px 20px;
    }
}
