html {
    scroll-behavior: smooth !important;
}

.TopButton {
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    padding: 1rem;
    border-radius: .5rem;
    background-color: orange;
    z-index: 1000;
    display: flex;
    cursor: pointer;
    opacity: .8;
    transform: translateX(120%);
    transition: transform .3s ease-in-out 0s;
}

.TopButton.visible {
    transform: translateX(0);
}

.TopButton:hover {
    opacity: 1;
    background-color: #ffb63f;
}