*
{
margin: 0;
padding: 0;
text-transform: capitalize;
font-family: Arial, Helvetica, sans-serif;

}

.container {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #333;
}

.container .email-signature{
    width: 700px;
    display: flex;
    align-items: center;
    background: #222;
    border-radius: 5px;
    box-shadow: 0 2px 5px #000;
    padding: 10px 40px;
    position: relative;
    overflow: hidden;
}

.container .email-signature .image img{
    height: 175px;
    width: 175px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid #fff;
    box-shadow: 0 0 5px #333;
    position: relative;
    top:-25px;
    left: -25px;
}
.container .email-signature .youtube{
    position: absolute;
    height: 25px;
    width: 140px;
  
    background: rgb(238, 13, 137);
    border: 2px solid rgb(248, 156, 156);
    border-radius: 5px;
    box-shadow: 0 0 5px #333;
    color: white;
    font-size: 15px;
    font-weight: 500;
    top: 80%;
    bottom: 10px;
    left: 20px;
    
}
.container .email-signature .youtube::after{
    content: '';
    text-decoration: none;
    
    color: #fff;
 
    text-transform: uppercase;
}
.container .email-signature .youtube:hover{
    background: rgb(250, 164, 3);
}
.container .email-signature .youtube a{
    position: absolute;
    text-decoration: none;
   
    color: #fff;
   
    text-transform: uppercase;
    padding-left: 28px;
    margin-top: 3px;
    
}

.container .email-signature .image_logo{
       top: 5px;
       right: 10px;
    position: absolute;
    padding-right: 10px;
}
.container .email-signature .image_logo img{
    height: 60px;
    width: 60px;       
     position: relative;
    
 }
.container .email-signature .image::before {
    content: '';
    position: absolute;
    top: -10px;
    right: 70%;
    height: 350px;
    width: 350px;
    background: #f0f0f0;
    border-radius: 50%;
    box-shadow: 20px 0 0 #2c3e50;
}
.container .email-signature .content{
    padding-left: 6%;
}

.container .email-signature .content .name{
    padding-left: 10%;
    font-size: 25px;
    color:#f0f0f0;
}

.container .email-signature .content .post{
    font-size: 15px;
    font-weight: 700;
    padding:10px 0;
    margin-top: 4%;
    margin-left: -5px;
    border-radius: 50px;
    background: #ccc;
    color:#333;
    text-align: center;
}
.container .email-signature .content .contact{
    margin-top: 30px;
}

.container .email-signature .content .contact li{
    list-style-type: none;
    margin: 10px 0;
    color: #ccc;
    font-weight: 600;
    letter-spacing: 2px;
    text-decoration: none;
}

.container .email-signature .content .contact li a{
   
    color: #ccc;
}

.container .email-signature .content .contact li i{
    height: 35px;
    width: 35px;
    line-height: 35px;
    border-radius: 50%;
    text-align: center;
    background: #2c3e50;
    margin-right: 10px;
    color: #fff;
    
}
.container .email-signature .content .project{
    position: absolute;
    color: #ccc;
    border: 2px solid #ccc;
    border-radius: 3px;
    padding: 2px;
    top:20%;
    left:91.5%;
    font-size: 15px;

}
.container .email-signature .content .icon{
    position: absolute;
    top: 60%;
    right: 25px;
    transform: translateY(-50%);
    display: flex;
    flex-flow: column;
}
.container .email-signature .content .icon a{
    text-decoration: none;
    height: 35px;
    width: 35px;
    line-height: 35px;
    text-align: center;
    background: #2c3e50;
    color: #fff;
    border-radius: 50%;
    margin: 5px 0;
}
.container .email-signature .content .icon a:hover{
    background: #333;
}

@media (max-width:768px){
    .container .email-signature{
        flex-flow: column;
        width: 90%;
    }
    .container .email-signature .image::before{
        width: 0%;
       
        top: 0%;
        left: 0;
    }
    .container .email-signature .youtube{
        position: absolute;      
        width: 25%;
        height: 25px; 
        top: 61%;      
        left: 70%;
    }
    .container .email-signature .youtube a{
        margin-top: 8%;
        margin-left: -21%;
        font-size: 13px;
    }
    .container .email-signature .image_logo{
        top: 180px;
        left: -30px;
     position: absolute;
     padding-right: 10px;
 }
 .container .email-signature .image_logo img{
     height: 60px;
     width: 60px;       
      position: relative;
     
  }
  .container .email-signature .content .project{
      top:91.5%;
      left: 13%;
  }
    .container .email-signature .content{
        width: 100%;
        text-align: center;
        padding: 50px 0;

    }
  
    .container .email-signature .content .name{
       margin-left: -25%;     
    }
    .container .email-signature .content li{
        text-align: left;
    }
    .container .email-signature .content .icon{
        top:93%;
        right: 0;
        width: 100%;
        flex-flow: row;
        justify-content: center;
    }
    .container .email-signature .content .icon a{
        margin: 0 5px;
    }
}