#card {
    background-color: var(--background-floating);
    border-radius: 25px;
    width: 40%;
    height: 900px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, .2)
}

#banner {
    height: 260px;
    width: 100%;
    background-color: #141414;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat
}

#user-info {
    position: relative;
    padding: 52px 16px 16px
}

#avatar {
    position: absolute;
    width: 96px;
    height: 96px;
    box-shadow: 0 0 0 8px var(--background-floating);
    border-radius: 50%;
    top: 0;
    transform: translateY(-50%)
}

#avatar>img {
    width: 96px;
    height: 96px;
    border-radius: 50%
}

#status {
    position: absolute;
    top: 91%;
    right: -8px;
    transform: translate(-50%, -50%);
    width: 28px;
    height: 28px;
    border-radius: 100%;
    background-color: #fff;
    cursor: pointer;
    border: 4px solid var(--background-floating)
}

#dprofile {
    position: absolute;
    right: 16px;
    top: 50%;
}

#badges {
    position: absolute;
    right: 16px;
    top: 16px;
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    max-width: 300px;
    width: 50%
}

.badge {
    cursor: pointer;
    margin: 2px 4px 0 0
}

.badge>img {
    height: 20px
}

#username {
    margin: 10px;
    font-size: 22px;
    font-weight: 700;
    font-family: Montserrat, sans-serif
}

#username>span {
    font-family: Montserrat, sans-serif;
    color: var(--text-muted)
}

hr {
    width: calc(100% - 32px);
    height: 1px;
    margin: 0 auto;
    border: none;
    outline: 0;
    background-color: var(--background-secondary)
}


#projects>h2 {
    font-family: Montserrat, sans-serif;
    font-weight: 700;
    font-size: 24px;
    text-transform: uppercase;
    color: #7e7e7e;
	text-shadow: 0 0 3px #7e7e7e;
    margin-bottom: 6px
}



#about {
    padding: 16px
}

#about>h4 {
    font-family: Montserrat, sans-serif;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 6px
}

#about>p {
    font-family: Montserrat, sans-serif;
    font-size: 14px
}

#social {
    width: 100%;
    display: grid;
    justify-content: center;
    padding: 6px 12px 16px;
    margin-top: 12px;
	text-align: center;
	gap: 25px;
	
	
	/*
	position: absolute;
	top: 0;
	left: -1px;
	right: -1px;
	bottom: 0;
	visibility: hidden;
	opacity: 0;
	transform: scaleY(.8);
	transform-origin: top;
	transition: transform .2s ease-out;
	z-index: -1;
	backface-visibility: hidden;
	*/
}

.social-link {
    margin: 2px 6px 0 0;
    transition: transform .3s
}

.social-link>img {
    color: #fff;
    width: 22px;
    height: 22px
}

.social-link:hover {
    transform: scale(1.05)
}

@media (max-width:512px) {
    #card {
        min-width: 100%;
        border-radius: 0
    }
}