:root {
    --font-size-default: 20px;
}
* {
    outline: unset;
    box-sizing: border-box;
    font-family: "inter";
    text-decoration: none;
    font-size: var(--font-size-default);
    scroll-behavior: smooth;
    margin: unset;
    line-height: 2;
}

body {
    scroll-behavior: smooth;
    background-color: #f6f8fb;
}
section {
    padding: 40px 0;
}

body::-webkit-scrollbar {
    width: 12px;
}
body::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px #b4b3b3;
    border-radius: 0;
}
body::-webkit-scrollbar-thumb {
    background: #753fa9;
}

footer {
    background: #753FA9;

}
.gradient-text {
    background: -webkit-linear-gradient(45deg, #6c5ce7, #d18be5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
