:root {
    --dark: #000000;
    --light: #ffffff;
}

::selection {
    color: #ffffff;
    background: #043045;
    text-shadow: none;
}

::-webkit-selection {
    color: #ffffff;
    background: #043045;
    text-shadow: none;
}

::-moz-selection {
    color: #ffffff;
    background: #043045;
    text-shadow: none;
}

@font-face {
    font-family: Helvetica;
    src: url("../fonts/helvetica/helvetica.ttf") format("truetype");
}

* {
    /* font-family: Avenir; */
    font-family: Helvetica;
    font-style: normal;
    font-weight: lighter;

    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

*::-webkit-scrollbar {
    width: 14px;

    background-color: transparent;
}

*::-webkit-scrollbar-track {
    background-color: transparent;
}

*::-webkit-scrollbar-thumb {
    border: 4px solid #fff;
    border-radius: 15px;
    
    background-color: #babac0;
}

*::-webkit-scrollbar-button {
    display: none;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;

    /* overflow-x: hidden; */
}

a {
    color: inherit;
    
    text-decoration: none;
}

a:focus {
	outline: none !important;
}

a:hover {
	text-decoration: none;
}

input[type="submit"] {
    cursor: pointer;
}

hr {
    color: var(--dark);

    margin: 0;
}

@media only screen and (max-width: 768px) {
    *::-webkit-scrollbar {
        display: none;
    }
}