*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:sans-serif;
}

::-webkit-scrollbar{
    width:8px;
}

::-webkit-scrollbar-thumb{
    background:cyan;
    border-radius:20px;
}

.glass{
    background:rgba(255,255,255,0.08);
    backdrop-filter:blur(15px);
}

.neon{
    box-shadow:
    0 0 10px cyan,
    0 0 20px cyan,
    0 0 40px cyan;
}