.buttons{
    display: block;
    width: auto;
    height: fit-content;
    align-items: start;
    justify-content: space-evenly;
    padding-left: 60px;
    margin-top: 1rem;
    
}
.buttons .row{
    display: block;
    margin: 0%;
    height: min-content;
    font-size: 20px;
}
.buttons .row button{
    position: relative;
    display: block;
    height: 35px;
    width: 125px;
    margin: 0px 0;
    color: #fff;
    font-weight: 900;
    text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.4);
    cursor: pointer;
    border: none;
    outline: none;
    border-radius: 0 5px 5px 0;
    transition: all 0s ease-out;
    font-size: 15px;
}
.row button:active{
    top: 3px;
}
.row button.instagram,
.row button.instagram span{
    background: #000;
    border-left: 1px solid #6e6d6d;
    box-shadow: 0px 5px 0px 0px #6e6d6d;
}
.row button.instagram:active{
    box-shadow: 0px 2px 0px 0px #6e6d6d;
}

.row button span{
    position: absolute;
    height: 35px;
    width: 40px;
    top: 0;
    left: -35px;
    line-height: 39px;
    font-size: 30px;
    display: block;
    font-weight: normal;
    border-radius: 5px 0 0 5px;
}
.row button:active span{
    top: -3px;
}
