/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

@media (min-width: 1400px) {
  html {
    font-size: 16px;
    }
}

@media (min-width: 1000px) and (max-width: 1399px)  {
  html {
    font-size: 15px;
    }
}

@media (max-width: 999px)  {
  html {
    font-size: 14px;
    }
}

body {
  font-family: "Open Sans", sans-serif;
  color: black;
  background-color: white;
}

a {
  text-decoration: none;
}

h1, h2 {
  padding-top: 2vw !important;
}



/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
#navbar ul {
  list-style: none !important;    /* remove default bullets on the UL */
  margin: 0; 
  padding: 0;
}

/* explicitly remove any marker on the LI */
#navbar ul li {
  list-style: none !important;
}

/* For modern browsers, also clear the ::marker pseudo‐element */
#navbar ul li::marker {
  content: none !important;
}

