* {
    padding: 0;
    margin: 0;
}

body {
    font-family: Verdana, Geneva, sans-serif;
    font-size: 24px;
    background-color: #CCC;
}

.float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    color: #FFF;
    border-radius: 80px;
    text-align: center;
    box-shadow: 2px 2px 3px #999;
}

.my-float {
    margin-top: 22px;
}



/* FONT AWESOME GENERIC BEAT */
a {
    color: #09f;
}

.fa-beat {
    animation: fa-beat 4s ease infinite;
}

@keyframes fa-beat {
    0% {
        transform: scale(1);
    }

    5% {
        transform: scale(1.20);
    }

    20% {
        transform: scale(1);
    }

    30% {
        transform: scale(1);
    }

    35% {
        transform: scale(1.20);
    }

    50% {
        transform: scale(1);
    }

    55% {
        transform: scale(1.20);
    }

    70% {
        transform: scale(1);
    }
}

.heart {
    color: red;
}