@import url("./scrollbar.css");

/** ^ CORE GLOBALS **/
html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #000000;
    color: #ffffff;
    overflow-x: hidden;
}

/** $ CORE GLOBALS **/


/** ^ ELEMENTAL GLOBALS **/
canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

a {
    color: white;
    text-decoration: none;
}

a:hover {
    color: red;
    transition: 0.5s;
}

hr {
    border-color: red;
    width: 100%;
}
details[disabled] summary {
    pointer-events: none;
}
/** $ ELEMENTAL GLOBALS **/

/** ^ MULTI-USE GLOBALS **/
.tilted-bar {
    position: relative;
    width: 100%;
    height: 300px;
    background-color: black;
    z-index: 15;
    clip-path: polygon(0 100%, 100% 0, 100% 101%, 0 101%);
    margin: 0px;
}

.tilted-bar.reversed{
    clip-path: polygon(100% 0, 0 100%, 0 -1%, 100% -1%);
}

.icon {
    font-size: 24px;
}

.debug {
    border: 1px solid green;
    width: 100vw;
    position: fixed;
    z-index: 50
}
/** $ MULTI-USE GLOBALS **/
