@charset "UTF-8";

@font-face {
    font-family: 'Code';
    src:url('../font/code/Code-Light.ttf') format('truetype'),
        url('../font/code/Code-Light.svg') format('svg');
    font-weight: lighter;
    font-style: normal;
}
@font-face {
    font-family: 'Code';
    src:url('../font/code/Code-Bold.ttf') format('truetype'),
        url('../font/code/Code-Bold.svg') format('svg');
    font-weight: bold;
    font-style: normal;
}

.center-cont {
    width: 100%;
    max-width: 1000px;
    padding: 0 15px;
    margin: 0 auto;
}

@media (max-width: 992px) {
    .center-cont {
        max-width: 880px;
        padding: 0 25px;
    }
}
@media (max-width: 768px) {
    .center-cont {
        padding: 0 15px;
    }
}


body {
    font-family: 'Montserrat', sans-serif;
    font-weight: normal;
    background-color: #fff;
}


::-webkit-scrollbar { width: 2px; }
::-webkit-scrollbar-track { background-color: transparent; }
::-webkit-scrollbar-thumb { background-color: #cde4ba;border-radius:3px; }
::-webkit-scrollbar-thumb:hover { background-color: #cde4ba; }

::selection {
    background: #dcefbb;
    color: #000;
}