/* Base Styles */
body {
    margin: 0;
    padding: 0;
    background: #ececec;
    color: #171717;
    font-family: 'IBM Plex Sans Condensed';
    font-weight: 200;
    min-height: 100vh;
    min-height: 100dvh;
    overflow: auto;
    cursor: default;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

a {
    color: #171717;
    text-decoration: none;
    position: relative;
    display: inline;
    overflow: hidden;
    font-weight: 200;
}

.footer-menu a::before {
        font-weight: 200;

    display: none;
}

.footer-menu a.active-link {
    color: #ececec;
    font-weight: 200;
    background-color: #171717;
}

.footer-menu a {
    transition: color 0.3s ease, font-weight 0.3s ease;
}

.footer-menu a:hover {
    color: #d6d6d6;
    font-weight: 200;
    background-color: #171717;
}

img {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
}

canvas {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
}