#floating-wpp {
    position: fixed;
    bottom: 2.2rem;
    right: 2rem;
    color: white;
    z-index: 1001;
    font-size: 2rem;
    background: rgba(0, 0, 0, 0.6);
    width: 3.5rem;
    height: 3.5rem;
    line-height: 3.5rem;
    text-align: center;
    border-radius: 50%;
    color: lime;
    border: lime 1px solid;
    opacity: .65;
    transition: transform .2s ease;
}
#floating-wpp i {
    transform: translateY(-2px);
}
#floating-wpp:hover {
    transform: scale(1.1);
}
@media screen and (max-width: 768px) {
    #floating-wpp {
        bottom: 2.5rem;
    }
}