:root {
    --primaryColor: #000000;
    --secondaryColor: #ffffff;
    --tertiaryColor: #cccccc;
    
    --errorColor: #c81508;
    --successColor: #59981a;
}

::selection {
    color: #ffffff;
    background: #000000;
    text-shadow: none;
}

::-webkit-selection {
    color: #ffffff;
    background: #000000;
    text-shadow: none;
}

::-moz-selection {
    color: #ffffff;
    background: #000000;
    text-shadow: none;
}

@font-face {
    font-family: Helvetica;
    src: url("../font/helvetica/helvetica.ttf") format("truetype");
}

@font-face {
    font-family: FreeSans;
    src: url("../font/free-sans/free-sans.ttf") format("truetype");
}

* {
    font-family: FreeSans;
    font-style: normal;
    font-weight: lighter;

    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;

    overflow-x: hidden;
}

body::-webkit-scrollbar {
    width: 10px;

    background-color: transparent;
}

body::-webkit-scrollbar-track {
    background-color: transparent;
}

body::-webkit-scrollbar-thumb {
    border: 5px solid #babac0;
    border-radius: 10px;
    
    color: #babac0;
}

body::-webkit-scrollbar-button {
    display: none;
}

a {
    color: inherit;
    
    text-decoration: none;
}

a:focus {
	outline: none !important;
}

a:hover {
	text-decoration: none;
}

select {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
}

input[type="submit"] {
    cursor: pointer;

    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
}

h2 {
    margin: 0;
}

hr {
    width: 100%;

    border: 0.5px solid #f2f3f7;
}

@media only screen and (max-width: 700px) {
    body::-webkit-scrollbar {
        display: none;
    }
}