
.instagramButton {
    background: transparent;
    padding: 0px 4px;
    display: flex;
    align-items: center;
    text-decoration: none;
    cursor: pointer;
    border: 0px ;
    border-radius: 8%;
    outline: none;
    overflow: hidden;
    color: rgb(255,0,0);
    transition: all 0.3s 0.1s ease-out;
    text-align: center;
  }
  
  .instagramButton span {
    margin: 1px 3px;
  }
  
  .instagramButton::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: '';
    display: block;
    width: 20em;
    height: 20em;
    left: -5em;
    text-align: center;
    transition: box-shadow 0.5s ease-out;
  }
  
  .instagramButton:hover {
    color: #fff;
    background: rgb(212, 110, 178);
  }
  