* {
    font-family: Consolas, 'Courier New', monospace;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    max-width: 100vw;
    color: var(--text);
    scrollbar-color: #7a7a7a #4b4b4b;
}

:root {
    --text: white;
    --background: linear-gradient(to bottom, rgb(23, 25, 26), rgb(44, 42, 51));
    --purplegray: rgb(65, 59, 78);
    --lightpurples: rgb(182, 153, 250);
    --purples: rgb(111, 82, 177);
    --primary: rgb(39, 178, 243);
    --secondary:rgb(3, 98, 161);
    --padBG: rgb(133, 129, 121);
    --subtlewhite: #e6e6e6;
    --LibsBG1 : rgb(133, 100, 209);
    --LibsBG2 : rgb(28, 51, 112);
    --LibsGrad1: linear-gradient(to right bottom, var(--LibsBG1), var(--LibsBG2));
    --LibsGrad2: linear-gradient(to bottom, var(--LibsBG1), var(--libsBG6));
}
html {
    scroll-behavior: smooth;
    background: var(--background);
    min-height: 100vh;
}