*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: black;
}
.icon{
    text-decoration: none;
    font-size: 25px;
    transition: all 0.3s ease-in-out;
}
.icon:hover{
    transform: scale(1.5);
}
.container{
      height: 65px;
      width: 250px;
      background: white;
      border-radius: 10px;
      position: relative;
      overflow: hidden;
      cursor: pointer;
}
.container::before{
    content: 'Share';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 10px;
    font-size: 27px;
    font-weight: bold;
    color: #34495e;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}
.container:hover::before{
    left: -250px;
}
.social-media{
    width: 100%;
    height: 100%;
    /* background-color: red; */
    border-radius: 10px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    position: absolute;
    top: 0;
    right: -250px;
    transition: all 0.4s ease-in-out;
}
.social-media a:nth-child(1) i{
    color: #28A219;
}
.social-media a:nth-child(2) i{
    color: #C74569;
}
.social-media a:nth-child(3) i{
    color: #0772E2;
}
.social-media a:nth-child(4) i{
    color: #000000;
}
.container:hover .social-media{
   right: 0;
}