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

* {
    margin: 0;
    padding: 0;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
    box-sizing: border-box;
    scroll-behavior: smooth;
}
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #151515;
}
::-webkit-scrollbar-thumb {
    background: #FFFFFF;
}
body {
    display: flex;
    flex-direction: column;

}