@keyframes bounceAnimation {
    0%   {top: 5px;}
    25%  {top: 5px;}
    50%  {top: -5px;}
    100% {top: -5px;}
}

#scrollToTop {
    position: fixed;
    bottom: 20px;
    left: 15px;
    border: 1px solid white;
    font-size: 1.2rem;
    padding: 10px 15px;
    text-decoration: none;
    border-radius: 15px;
    color: white;
    background-color: #ffc107;
    opacity: 80%;
}

#scrollToTop i {
    color: black;
}