* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #919297;
    color: #555;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.wrapper {
    display: flex;
    width: 100%;
    height: auto;
    min-height: 100vh;
    justify-content: center;
    align-items: center;
}

.card {
    width: 100%;
    max-width: 730px;
    height: 600px;
    background-color: #fff;
    border-radius: 25px;
    box-shadow:0 0 17px 11px #2222223b;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 29px;
}

.avatar {
    border-radius: 50%;
    /* border: 2px solid #32c4d8; */
    position: relative;
}

.avatar::before {
    content: " ";
    position: absolute;
    top: -5px;
    right: -2px;
    border: 1px solid #32c4d8;
    border-width: 2px;
    width: 150px;
    height: 150px;
    border-radius: 100px;
}

.avatar::after {
    content: " ";
    position: absolute;
    top: -2px;
    left: 1px;
    /* right: 5px; */
    /* bottom: 0px; */
    border: 1px solid #32c4d8;
    border-width: 2px;
    width: 150px;
    height: 150px;
    border-radius: 100px;
}

.avatar img {
    border-radius: 50%;
    box-shadow: 5px 4px 13px 4px #33333369;
}

h2 {
    margin-top: 20px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;

}

.social-links-icons {
    margin-top: 30px;
    display: flex;
}

.social-links-icons a {
    width: 50px;
    height: 50px;
    background: #eee;
    display: inline;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0px 10px;
    box-shadow: 0 0 10px #6a6a6a4d;
}
.social-links-icons a:hover {
    background: #32c4d8;
    color: #fff;
}
.social-links-icons a:hover img{
    filter: invert(1);
}

.social-links-icons a img {}

.social-links-buttons {
    display: flex;
    flex-direction: column;
    width: 90%;
    margin-top: 40px;
}

.social-links-buttons a {
    margin-bottom: 32px;
    text-decoration: none;
}
.social-links-buttons button {
    width: 100%;
    border-radius: 30px;
    height: 60px;
    border: 0px;
    outline: 0px;
    box-shadow: 0 0 10px #6a6a6a4d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    cursor: pointer;
    font-family: "Comic Sans MS";
}

.social-links-buttons a img {
    margin-right: 12px;
}

.social-links-buttons button:hover {
    background: #32c4d8;
    color: #fff;
}
.social-links-buttons button:hover img{
    filter: invert(1);
}