@import url('normalize.css');

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    overflow-x: hidden;
    font-family: 'Manrope', sans-serif;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

.fullscreen-div {
    width: 100%;
    height: 100vh;
    position: relative;
    background: var(--color-bg-dark-gradient);
}

.fullscreen-div2 {
    width: 100%;
    height: 100vh;
    position: relative;
    background: var(--color-bg-light-grey-2);
}

.fullscreen-div3 {
    width: 100%;
    height: 100vh;
    position: relative;
    background: var(--color-bg-dark-black);
}

::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.4);
}