* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    height: 100%;
}

::-webkit-scrollbar {
    background-color: #fff;
    width: 16px
}

::-webkit-scrollbar-track {
    background-color: #fff;
    transition: 0.25s;
}

::-webkit-scrollbar-track:hover {
    background-color: #f4f4f4;
}

::-webkit-scrollbar-thumb {
    background-color: #dddddd;
    border-radius: 16px;
    border: 5px solid #fff;
    cursor: pointer;
    transition: 0.25s;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #bbbbbb;
    border: 4px solid #f4f4f4;
}

::-webkit-scrollbar-button {
    display: none
}

.goToTopButton {
    width: 37px;
    height: 37px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    position: fixed;
    bottom: 0;
    right: 0;
    opacity: 0.75;
    border-radius: var(--borderRadiusInside1);
    background-color: rgba(0, 0, 0, 0.7);
    margin: 15px 11px;
    box-shadow: 0px 0px 16px rgba(17, 17, 26, 0.1);
    z-index: 10001;
    animation: gttAnim 200ms ease-out;
}

.goToTopButton>svg {
    width: 23px;
    height: 23px;
    stroke-width: 1.5;
    display: block;
    color: var(--primClr1);
    color: white;
}

@keyframes gttAnim {
    from {
        opacity: 0;
        scale: 0.5;
    }

    to {
        opacity: 1;
        scale: 1;
    }
}