@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800&display=swap');

body,
html {
    font-family: "Poppins", sans-serif;
    overflow-x: hidden;
    overflow-y: overlay;
    background: var(--bg-dark);
    margin: 0;
    padding: 0;
}

::-webkit-scrollbar {
    width: 3px;
    height: 3px;
}

::-webkit-scrollbar-thumb {
    background: rgb(90, 90, 90);
    border-radius: 50px;
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0);
}

a {
    text-decoration: none !important;
}

strong {
    font-weight: 500;
}