* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*, html {
    --primary: linear-gradient(180deg, #364F6B 20.19%, #122335 100%);
    --secondary: linear-gradient(180deg, #F95184 0%, #CE4977 100%);
    --textColor: #e9e9e9;
    --sub: #2C435D;
    --subColor: rgba(249, 81, 132, .8);
}

body {
    font-size: 100%;
    font-family: 'Arimo', sans-serif;
    font-weight: 400;
    color: var(--textColor);
}

.container {
    font-size: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.row {
    width: 100%;
}

img {
    width: 100%;
}

.profile-card {
    width: 20%;
    min-width: 350px;
    height: 100%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 60px 25px;
    margin: 0 auto;
    border-radius: 15px;
    box-shadow: 0 0 15px rgba(0,0,0,.25);
    position: relative;
    overflow: hidden;
    transition: all .5s ease-in-out;
}

/* 
PROFILE IMAGE
===============*/
.content__image {
    position: relative;
    z-index: 5;
    
}

.content__image > img {
    border: 5px solid var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(0,0,0,.5);
    overflow: hidden;
}

.content__image-check {
    position: absolute; 
    top: 50%;
    right: -15px;
    transform: translateY(-50%);
    z-index: 5;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.content__image-check img {
    width: 20px;
    z-index: 2;
    
}

.content__image-check::after {
    position: absolute;
    content: '';
    width: 30px;
    height: 30px;
    background: var(--sub);
    top: 0;
    right: 0;
    z-index: -1;
    border-radius: 50px;
}

/* 
DETAILS
===============*/

.content__details {
    text-align: center;
    margin-top: 30px;
    z-index: 5 !important;
}

.content__details-name {
    color: white;
    font-size: 2.2rem;
    text-align: center;
    line-height: 2rem;
    font-weight: 700;
}

.content__details-username {
    color: white;
    display: block;
    text-align: center;
    font-size: 1rem;  
    margin-top: 10px;
}

.content__details-description {
    color: white;
    margin-top: 30px;
}

/* 
LINKS
===============*/
.content__details-links,
.social-media {
    display: flex;
    flex-direction: row;
    align-items: center;
}

/* 
LINKS SOCIAL MEDIA
===============*/

.content__details-links {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.social-media img {
    width: 15px;
}

.social-media li {
    list-style-type: none;
    margin-right: 10px;
}

.social-media li:nth-child(2) img {
    width: 10px;
}

/* 
BUTTONS
===============*/

.primary-button {
    background: var(--secondary);
    border: none;
    padding: 10px 20px;
    font-family: 'Arimo', sans-serif;
    font-size: 1rem;
    color: var(--textColor);
    border-radius: 50px;
    box-shadow: 0 0 5px rgba(0,0,0,.2);
    margin-right: 20px;
    cursor: pointer;
    
}

/* 
PROFILE CARD CIRCLES
===============*/
.profile-card::after {
    width: 100%;
    height: 100%;
    position: absolute;
    
    background-color: var(--subColor);
    content: '';

    /* MAGIC HAPPENS */
    clip-path: circle(20%);
    top: -50%;
    right: -45%;
    z-index: 1;
    transition: all .5s ease-in-out;
}

.profile-card::before {
    width: 100%;
    height: 100%;
    position: absolute;
    
    background-color: var(--subColor);
    content: '';

    /* MAGIC HAPPENS */
    clip-path: circle(40%);
    bottom: -50%;
    left: -45%;;
    z-index: 0;
    transition: all .5s ease-in-out;
}

/* 
PROFILE CARD CIRCLES
===============*/
/* REAL MAGIC HAPPENS */

.profile-card:hover::after{
    clip-path: circle(100%);
    top: 0;
    left: 0;
    opacity: 1;
    background-color: var(--primary);
}

.profile-card:hover::before {
    background-color: var(--primary);
    opacity: 1;
}

.profile-card:hover .primary-button {
    background: var(--primary);
    transition: all .5s ease-in-out;
}

.profile-card:hover {
    transform: translateY(-10px);
}