*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif ;
}   

body{
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #222;
    color: white;
}

h2{
    font-size: 30px;
    margin: 15px;
    font-weight: 600;
}

.container{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.container .card{
    width: 340px;
    margin: 10px;
    background: #444;
    border-radius: 10px;
    transition: 0.3s;
}

.container .card:hover{
    background: coral;
}

.container .card .content{
    transition: 0.3s;
}

.container .card .content:hover{
    transform: scale(1.069);
}

.container .card .profile{
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    margin: 20px auto;
    border: 5px solid coral;
}

.container .card .profile img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.container .card .detail h2,
.container .card .detail h4{
    margin: 10px 0;
}

.container .card .social{
    margin: 15px 0;
    width: 100%;
    display: flex;
    justify-content: center;
}

.container .card .detail .social a{
    margin: 8px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    line-height: 40px;
    text-align: center;
    transition: 0.2s;
}

.container .card .social a:hover{
    background: #222;
}

.container .card .social a i{
    font-size: 21px;
    color: white;
}