.float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 1px 1px 2px #0000001c;
    z-index: 100;
}

.float:hover {
    text-decoration: none;
    color: #FFF;
    background-color: #128C7E;
    animation: shake 1s;
    animation-iteration-count: infinite;
}

.my-float {
    margin-top: 16px;
}

.float-facebook {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 120px;
    right: 40px;
    background-color: #4267B2;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 1px 1px 2px #0000001c;
    z-index: 100;
}

.float-facebook:hover {
    text-decoration: none;
    color: #FFF;
    background-color: #1a5bb1;
    animation: shake 1s;
    animation-iteration-count: infinite;
}

.my-float-facebook {
    margin-top: 16px;
}

.float-instagram {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 200px;
    right: 40px;
    background-color: #E1306C;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 1px 1px 2px #0000001c;
    z-index: 100;
}

.float-instagram:hover {
    text-decoration: none;
    color: #FFF;
    background-color: #C13584;
    animation: shake 1s;
    animation-iteration-count: infinite;
}

.my-float-instagram {
    margin-top: 16px;
}