/* General tag styling */
* {
    box-sizing: border-box;
    margin: 0; padding: 0;

    font-family: Ubuntu Mono;
    font-weight: 900;
    user-select: none;
}

body {
    background-color: rgb(25, 26, 27);

    overflow-x: hidden;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

body::-webkit-scrollbar {
    display: none;
}

/* Link formatting */
a {
    position: relative;

    color: rgb(255, 255, 255);
    text-decoration: none;

    transition: 0.3s;
}

a:hover {
    color: rgb(90, 70, 255);

    cursor: pointer;
}