* {
    margin: 0;
    padding: 0;
    font-size: 100%;
    border: none;
    outline: none;
    font-weight: 400;
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, 0.5) rgba(0, 0, 0, 0.2);
}

html {
    overflow-x: hidden;
    overflow-y: auto;
    background-color: #f5f5f5;
}

a {
    text-decoration: none;
    cursor: pointer;
}

ul {
    list-style: none;
}

::-webkit-scrollbar {
    width: 1vh;
}

::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    border-radius: 2vh;
}

::-webkit-scrollbar-thumb {
    border-radius: 2vh;
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
}