/* BODY & CONTAINER*/
* {
    box-sizing: border-box;
}
img {
    pointer-events: none;
}
html {
    cursor: crosshair;
    font-size: 16px;
}
body {
    background-color: var(--bg-color);
    font-family: Arial, Helvetica, sans-serif;
    color: var(--font-color);
    margin: 0;
    padding: 0;
    overflow: hidden;
}
div.main-container {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    height: calc(100vh - var(--nav-height));
}
div.credit {
    position: fixed; z-index: 1;
    bottom: 0;
}
div.credit ul {
    margin-bottom: 0.6rem;
    display: flex;
    flex-direction: row;
    align-items: center;
}
div.credit li {
    font-size: 0.7rem;
    list-style: none;
    margin: 0 1rem 0 0;
}
div.credit i {
    font-size: 1rem;
}
div.credit li a {
    text-decoration: none;
    color: inherit!important;
    cursor: var(--link-cursor-type);
}
/* ADAPTIVE PROJECT LIST & VIEW */
@media all and (max-width: 1400px) {
    
}
@media all and (max-width: 1000px) {
    html {
        font-size: 15px;
    }
}

@media all and (max-width: 750px) {
    html {
        font-size: 14px;
    }
}
@media all and (max-width: 600px) { /* MOBILE */
    div.main-container {
        flex-direction: column;
        width: 100%;
    }
    div.credit ul {
        padding-left: var(--card-gap);
    }
    div.credit li {
        font-size: 0.85rem;
    }
}