body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
}

.scroll-sm {
    &::-webkit-scrollbar {
        width: 10px;
        height: 10px;
        border-radius: 5px;
    }

    &::-webkit-scrollbar-track {
        background: #0a2754;
        border-radius: 5px;
    }

    &::-webkit-scrollbar-thumb {
        background: #247CFF;
    }

    &::-webkit-scrollbar-thumb:hover {
        background: #0062ff;
    }
}

.scroll-sm {
    &::-webkit-scrollbar {
        width: 5px;
        height: 5px;
        border-radius: 5px;
    }

    &::-webkit-scrollbar-track {
        background: #0a2754;
        border-radius: 5px;
    }

    &::-webkit-scrollbar-thumb {
        background: #247CFF;
    }

    &::-webkit-scrollbar-thumb:hover {
        background: #0062ff;
    }
}