:root{
    --navHeight: 80px;
    --vh: calc(100vh - var(--navHeight));
}

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    color: white;
}
body{
    background-color: black;
}

body::-webkit-scrollbar {
    background-color: rgb(26, 26, 26);
}
body::-webkit-scrollbar-thumb {
    background-color: rgb(196, 196, 196);
}
body::-webkit-scrollbar-thumb:hover {
    background-color: rgb(131, 130, 130);
}

section{
    margin-top: var(--navHeight);
    /* border: 2px blue solid; */
}
h1, h2, h3{
    text-align: center;
}

canvas{
    border: 2px solid;
    width: 100%;
    height: 100%;
}
canvas:hover{
    cursor: pointer;
}