/* html {  scroll-behavior: smooth;} */#back-to-top-btn {    display: none;    position: fixed;    bottom: 20px;    right: 20px;    font-size: 26px;    width: 50px;    height: 50px;    background-color: var(--darkblue);    color: var(--jadegruen);    cursor: pointer;    border: none;    border-radius: 50%;    transition-duration: 0.2s;    transition-timing-function: ease-in-out;    transition-property: background-color, color;    outline: none;}#back-to-top-btn:hover, #back-to-top-btn:focus {    background-color: var(--jadegruen);    color: var(--darkblue);}@media(max-width: 992px) {    #back-to-top-btn { font-size: 22px; width: 40px; height: 40px; bottom: 20px; right: 20px; }}@media(max-width:768px) {    #back-to-top-btn { font-size: 18px; width: 40px; height: 40px; bottom: 70px; right: 20px; }}/* Animations */.btnEntrance {    animation-duration: 0.5s;    animation-fill-mode: both;    animation-name: btnEntrance;}/* fadeInUp */@keyframes btnEntrance {    from {        opacity: 0;        transform: translate3d(0, 100%, 0);    }    to {        opacity: 1;        transform: translate3d(0, 0, 0);    }}.btnExit {    animation-duration: 0.25s;    animation-fill-mode: both;    animation-name: btnExit;}/* fadeOutDown */@keyframes btnExit {    from {        opacity: 1;    }    to {        opacity: 0;        transform: translate3d(0, 100%, 0);    }}