html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}




html {
    background-color: white;
    color: black;
    transition: background-color 0.3s, color 0.3s;
}

html.dark-mode {
    background-color: #121212;
    color: white;
}
