

#sharetip ul {

    list-style: none;

    display: flex;
    flex-direction: row;
    justify-content: space-between;

    background-color: #DDDD;
    box-shadow: 0px 2px #0003;
    text-shadow: 2px 2px 6px #0005;
    border-radius: 1.5em;

    margin: 0;
    padding: 0.25em;

    position: relative;
    left: 0.25em;
    top: -3.5em;

    transform: translatey(0px);
    animation: float 5s ease-in-out infinite;
}


@keyframes float {
    0% {
        box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.5);
        transform: translatey(0px);
    }

    50% {
        box-shadow: 0 15px 15px 0px rgba(0, 0, 0, 0.2);
        transform: translatey(-3px);
    }

    100% {
        box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.5);
        transform: translatey(0px);
    }
}


#sharetip button {

    font-size: 18pt;
    color: #FFF;
    background-color: unset;
    border: 0;
}

#sharetip button:hover {

    text-shadow: 0px 0px 15px #FFFA;
}
