@font-face {
    font-family: 'NotoSans';
    font-weight: 100;
    src: local('NotoSans'), url(assets/fonts/NotoSans-Thin.ttf) format('truetype');
}
@font-face {
    font-family: 'NotoSans';
    font-weight: 200;
    src: local('NotoSans'), url(assets/fonts/NotoSans-ExtraLight.ttf) format('truetype');
}
@font-face {
    font-family: 'NotoSans';
    font-weight: 300;
    src: local('NotoSans'), url(assets/fonts/NotoSans-Light.ttf) format('truetype');
}
@font-face {
    font-family: 'NotoSans';
    font-weight: 400;
    src: local('NotoSans'), url(assets/fonts/NotoSans-Regular.ttf) format('truetype');
}
@font-face {
    font-family: 'NotoSans';
    font-weight: 500;
    src: local('NotoSans'), url(assets/fonts/NotoSans-Medium.ttf) format('truetype');
}
@font-face {
    font-family: 'NotoSans';
    font-weight: 600;
    src: local('NotoSans'), url(assets/fonts/NotoSans-SemiBold.ttf) format('truetype');
}
@font-face {
    font-family: 'NotoSans';
    font-weight: 700;
    src: local('NotoSans'), url(assets/fonts/NotoSans-Bold.ttf) format('truetype');
}
@font-face {
    font-family: 'NotoSans';
    font-weight: 800;
    src: local('NotoSans'), url(assets/fonts/NotoSans-ExtraBold.ttf) format('truetype');
}
@font-face {
    font-family: 'NotoSans';
    font-weight: 900;
    src: local('NotoSans'), url(assets/fonts/NotoSans-Black.ttf) format('truetype');
}

* {
    margin: 0;
    padding: 0;
    font-family: 'NotoSans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
    box-sizing: border-box;
}
body {
    display: flex;
    flex-direction: column;

}

::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #FFFFFF;

}
::-webkit-scrollbar-thumb {
    background: #EAF5FC;
    border-radius: 8px;
}