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

html {
    scroll-behavior: smooth;
}

::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: #0F0A1E;
}
::-webkit-scrollbar-thumb {
    background: rgba(107, 47, 217, 0.4);
    border-radius: 3px;
}

::selection {
    background: rgba(107, 47, 217, 0.4);
    color: white;
}
