*,
*::before,
*::after{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{

    scroll-behavior:smooth;
    scrollbar-gutter: stable;
    overflow-y: scroll;

}

body{

    font-family:"Inter",sans-serif;

    color:var(--text);

    background:#0B1020;

    overflow-x:hidden;

    min-height:100vh;

}

body::before{

    content:"";

    position:fixed;

    inset:0;

    z-index:-1;

    pointer-events:none;

    background:

        radial-gradient(
            circle at 50% -15%,
            rgba(77,96,180,.22),
            transparent 45%
        ),

        radial-gradient(
            circle at 90% 10%,
            rgba(255,122,132,.08),
            transparent 30%
        ),

        linear-gradient(
            180deg,
            #151B35 0%,
            #10162B 35%,
            #0B1020 100%
        );

}

img{

    display:block;

    max-width:100%;

}

a{

    color:inherit;

    text-decoration:none;

}

button{

    font:inherit;

}

input{

    font:inherit;

}

::selection{

    background:var(--primary);

    color:white;

}

::-webkit-scrollbar{

    width:12px;

}

::-webkit-scrollbar-track{

    background:#0E1325;

}

::-webkit-scrollbar-thumb{

    background:#2B3560;

    border-radius:50px;

}

::-webkit-scrollbar-thumb:hover{

    background:#FF7A84;

}

