#a2-toTop {
    position                  : fixed;
    bottom                    : 16px;
    right                     : 16px;

    padding                   : 8px 16px;

    font-size                 : 20px;
    font-weight               : bold;
    text-shadow               : 1px 1px 1px rgba(52,85,43,0.8);

    background                : white;
    border                    : 5px solid gold;
    border-radius             : 24px;

    text-decoration           : none;

    opacity                   : 0;
    transition                : opacity 0.3s;

    cursor                    : default;
}
  
#a2-toTop.scrolled {
    opacity                   : 1;

    cursor                    : pointer;
}
