/*-----SCROLLBAR-----*/
::-webkit-scrollbar {
    background: white;
    width: 5px;
}
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px transparent;
    border-radius: 10px;
}
::-webkit-scrollbar-thumb {
    background: #696969d4;
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: #696969;
}


* {
    box-sizing: border-box;
    text-decoration: none;
}
html {
    background-color: white;
    color: black;
    font-family: ppObjectSans-Regular;
    overflow-x: hidden;
}
body {
    margin: 0;
}
h1 {
    font-size: 2.5vw;
    margin: 0;
}
h2 {
    font-size: 1.3vw;
}
h3 {
    font-size: 1.5vw;
}
h5 {
    margin: 0;
    /*color: grey;*/
    font-size: 0.8vw;
}
a {
    font-size: 0.8vw;
    color: #0024ba;
}
b {
    color: #f06b12;
}
u {
    text-decoration: underline;
}