.floatd{
    position:fixed;
    width:250px;
    height:85px;
    top:20%;
    right:10%;
    background-color:#0099cc;
    color:#FFF;
    border-radius:50px;
    text-align:center;
    font-size:30px;
    box-shadow: 2px 2px 3px #999;
    z-index:100;
}

.my-floatd{
    margin-top:16px;
    font-size:20px;
}

@media (max-width: 650px) {
    .floatd {
        width:150px;
        height:50px;
        right:1%;
    }
    .my-floatd {
        font-size: 12px;
        margin-top:8px;
    }

}

@media (max-width: 1000px) and  (min-width: 765px) {
    .floatd {
        top:30%;
    }

}

html {
    scroll-behavior: smooth;
}