.profile-img {
    height: 150px;
    border-radius: 6px;
}
.link-icon {
    height: 24px;
}
.map-icon {
    height: 16px;
}


* {
    color: rgb(25, 25, 25);
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    margin: 0;
}

body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.card {
    border-radius: 16px;
    background-color: rgb(250, 250, 250);
    width: 250px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    box-shadow: 0px 1px 1px rgba(3, 7, 18, 0.02),
    0px 5px 4px rgba(3, 7, 18, 0.03),
    0px 12px 9px rgba(3, 7, 18, 0.05),
    0px 20px 15px rgba(3, 7, 18, 0.06),
    0px 32px 24px rgba(3, 7, 18, 0.08);

}

.card-main-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.card-side-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.card-side-info-text {
    font-weight: bold;
}

.social-link-list {
    list-style-type: none;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;

    padding: 0;
    margin-top: 16px;
}
.link-icon:hover {
    filter: drop-shadow(0 0 8px rgb(70, 70, 202));
}