
:root {
    --dark: #050510;
    --primary: #FF5627;
}

html {
    scroll-behavior: smooth;
    font-optical-sizing: auto;
}

body {
    background: white;
    color:var(--dark);
    font-family: "Inter Display", sans-serif;
}



a {
    transition: 0.3s;
}

img {
    user-select: none;
    pointer-events: none;
}


@font-face {
    font-family: "Inter Display";
    src: url("../fonts/ttf/InterDisplay-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "Inter Display";
    src: url("../fonts/ttf/InterDisplay-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: "Inter Display";
    src: url("../fonts/ttf/InterDisplay-SemiBold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: "Inter Display";
    src: url("../fonts/ttf/InterDisplay-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: "Inter Display";
    src: url("../fonts/ttf/InterDisplay-ExtraBold.ttf") format("truetype");
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: "Inter Display";
    src: url("../fonts/ttf/InterDisplay-Black.ttf") format("truetype");
    font-weight: 900;
    font-style: normal;
}



@font-face {
    font-family: "Inter Display";
    src: url("../fonts/ttf/InterDisplay-Italic.ttf") format("truetype");
    font-weight: 400;
    font-style: italic;
}

@font-face {
    font-family: "Inter Display";
    src: url("../fonts/ttf/InterDisplay-BoldItalic.ttf") format("truetype");
    font-weight: 700;
    font-style: italic;
}


html{
    scroll-behavior:smooth;
}

.theme-scrollbar {
    scrollbar-width: thin;
    scrollbar-color: var(--primary) #f1f1f1;
}

.theme-scrollbar::-webkit-scrollbar {
    width: 6px;
}

.theme-scrollbar::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 999px;
}

.theme-scrollbar::-webkit-scrollbar-thumb {
    background-color: var(--primary);
    border-radius: 999px;
}

.theme-scrollbar::-webkit-scrollbar-thumb:hover {
    background-color: #e04a1f;
}


