/* Available Fonts */
/* 
font-family: 'Montserrat', sans-serif;
font-family: 'Roboto', sans-serif; 
*/

html {
    scroll-behavior: smooth;
}

body { 
    margin: 0 0 0 0;            /* remove margins */
    padding: 0 0 0 0;           /* remove padding */
    font-family: "Roboto", Helvetica, sans-serif;
    font-size: 1rem;
    font-weight: 400;
}   

section {
    margin-top: 50px;
}

h4, h5 {
    margin-top: 40px;
}

h6 {
    margin-top: 20px;
}

footer {
    text-align: center;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {                 /* Consider making scrollbar larger */
    box-shadow: inset 0 0 5px grey;
    border-radius: 10px;
}
::-webkit-scrollbar-thumb {
    background: rgb(255, 255, 255);
    border-radius: 0px;
}