:root {
    font-size: 16px;
    font-family: "Poppins", "sans-serif";
    --text-primary:#b6b6b6;
    --text-secondary: #ececec;
    --bg-primary: #23232e;
    --bg-secondary: #141418;
    --theme-primary: #ff7eee;
    --theme-secondary: #df49a6;
    --transition-speed: 600ms;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    color: black;
    background-color: white;
}

body::-webkit-scrollbar {
    width: 0.5rem;
}

body::-webkit-scrollbar-track {
    background: #1e1e24;
}

body::-webkit-scrollbar-thumb {
    background: #6649b8;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
