* {
    font-family: 'Dosis', sans-serif;
}

/* width */
::-webkit-scrollbar {
    width: 13px;
}

/* Track */
::-webkit-scrollbar-track {
    /* background: #f1f1f1;  */
    opacity: 0;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: rgba(60, 60, 60, 0.8); 
    transition-duration: 0.3s;
    border-radius: .5em;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: rgba(60, 60, 60, 1); 
    transition-duration: 0.3s;
}

a {
    color: inherit;
}

button {
    /* Remove default styling */
    background: none;
    border: none;
    outline: none;
    color: inherit;
    font-size: inherit;
    margin: 0;
    padding: 0;
    cursor: pointer;
}