#GoToTop {

    font-size:2em;

    color:var(--baseColourInvert);

    background:var(--baseColour);

    position:fixed;

    width:1.5em;

    height:1.5em;

    right:-25vw;

        bottom:6vh;

        transition:all 0.5s;

        border:solid 0.25vmin transparent;

        display:flex;

        align-items:center;

        justify-content:center;

        z-index:100;

}





#GoToTop:hover {

    background:var(--baseColour_000);

    color:var(--baseColour_100);

    border-color:var(--baseColour_000);

}

.gototop-show {

    right:1vw !important;

}