*
{
    margin:0;
    padding:0;
    font-family:"ubuntu",sans-serif;
    box-sizing:border-box;
    text-decoration: none;
}

body
{
    height: 100vh;
    background: url("https://www.technocrazed.com/wp-content/uploads/2015/12/black-wallpaper-to-set-as-background-25.jpg") no-repeat
    center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;


}

.profileCard
{
    width: 400px;
    text-align: center;
    border-radius: 8px;
    overflow: hidden;
}

.CardHeader
{
    background: whitesmoke;
    padding: 60px 40px;
}
.pic
{
    display: inline-block;
    padding: 8px;
    background:linear-gradient(130deg,#fff,#000);

    margin: auto;
    border-radius: 50%;
    background-size: 200% 200%;
    animation: animated-gradient 2s linear infinite;
}

@keyframes animated-gradient
{

    25%
    {
        background-position: left bottom;
    }
    50%
    {
        background-position: right bottom;
    }
    75%
    {
        background-position: right top;
    }
    100%
    {
        background-position: left top;
    }

}
.pic img
{
   display: block;
   width:100px;
   height: 100px;
   border-radius: 50%;

}

.name
{
    /* color:#f2f2f2; */
    font-family: "Cambria", "Cochin", Georgia, Times, 'Times New Roman', serif;
    color: black;
    font-size: 28px;
    font-weight: 600;
    margin: 10px 0;
}

.desc
{
    font-size: 18px;
    color: rgb(19, 18, 18);

}

.desc:hover
{
    
    font-weight: bolder;
  
}

.sm
{
    margin-top: 15px;
}
.sm a
{

      display: inline-block;
      font-size: 40px;
      width: 60px;
      height: 60px;
      line-height: 60px;
      text-align: center;
      color: #000;
      margin: 0 16px;
      transition: .4s linear;
      position: relative;
}

.sm a::before, .sm a::after
{
    content: '';
    position: absolute;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    transition: .4s linear;

}

.sm a:hover
{
    transform: scale(.8);
   
}
.sm a:hover::before
{
    border-left: 4px solid;
    border-right: 4px solid;
    transform: skewX(20deg);
}

.sm a:hover::after
{
    border-top: 4px solid;
    border-bottom: 4px solid;
    transform: skewY(-20deg);
}
.contact-btn
{
    display: inline-block;
    padding: 12px 50px;
    color: #000;
    border:2px solid #000;
    margin-top:16px;
    transition: .3s linear;
}

.contact-btn:hover
{
   background: #000;
   color: #fff;

}

.card-footer
{
    background-color: rgb(160, 153, 153);
    padding: 40px 10px;
}

.mail

{
    font-family: "Cambria", "Cochin", Georgia, Times, 'Times New Roman', serif ;
    font-weight: bolder;
}
.mail:hover
{
    background-color: black;
    color: #fff;
    box-sizing: border-box;
    border-radius: 5px;
    align-items: center;
    justify-content: center;
}
.email
{
    margin-top: 15px;
    font-family: "Cambria", "Cochin", Georgia, Times, 'Times New Roman', serif;
    color: rgb(100, 98, 98);
}