/* stylelint-disable */

@import url(layout.css);


@import url(control.css);
@import url(project.css);


:root {
    --main-font:'Plus Jakarta Sans', sans-serif;
    --text:13px;
}






/* user agent reset */

* { padding: 0; margin: 0; box-sizing: border-box; outline: none; border: none; -webkit-touch-callout: none; /* prevent callout to copy image, etc when tap to hold */ -webkit-text-size-adjust: none; /* prevent webkit from resizing text to fit */ -webkit-tap-highlight-color: rgba(0,0,0,0); /* prevent tap highlight color / shadow */ user-select: none; /* prevent copy paste, to allow, change 'none' to 'text' */ }
* {/*box-shadow:0 0 0 1px red!important;*/}
* { box-sizing: border-box; margin: 0; padding: 0 }
li { list-style: none; }
a { color: inherit; text-decoration: none }


::-moz-selection {
    /* Code for Firefox */
    color: #fff;
    background: var(--main-color);
}

::selection {
    color: #fff;
    background: var(--main-color);
}


/* stylelint-enable */