@font-face {
    font-family: "Overlock";
    src: url("../fonts/Overlock/Overlock-Regular.ttf");
}
@font-face {
    font-family: "Overlock-N";
    src: url("../fonts/Overlock/Overlock-Black.ttf");
}
*
{
    font-family: Arial, Helvetica, sans-serif;
}

/* width */
::-webkit-scrollbar {
    width: 10px;
}

/* ::-webkit-scrollbar:hover {
    width: 10px;
} */

/* Track */
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey; 
    /* border-radius: 10px; */
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #45657c; 
    /* border-radius: 10px; */
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #405e74; 
}


a
{
    text-decoration: none;
    color: inherit;
    border-color: inherit;
}
html, body
{
    margin: 0;
    /* background-color: #C4EAF2; */
    background-color: #D9E3E5;
    /* background-color: rgb(223, 231, 250); */
}
body
{
    position: relative;
}
#footer {
    box-sizing: border-box;
    position: unset;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 1em;
    margin-top: 3%;
    z-index: 0;
    color: white;
    background-color: #45657c;
    display: flex;
    justify-content: center;
    align-items: center;
}

@-moz-document url-prefix() {
    body
    {
        height: 100%;
    }
}

@media (max-width: 999px) {

    /* width */
    ::-webkit-scrollbar {
      width: 0px;
    }
  
}