* {
  font-family: "Nunito", sans-serif;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-size: 16px;
}

/* Định nghĩa các biến màu cho theme sáng */
html.light {
  --background-color: #fff;
  --text-color: #333;
}

/* Ghi đè các biến màu đó cho theme tối */
html.dark {
  --background-color: #333;
  --text-color: #fff;
}

html {
  height: 100%;
}

body {
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  background-color: var(--background-color);
  color: var(--text-color);
  transition: background-color 0.3s, color 0.3s;
}

header {
  position: sticky;
  top: 0;
  z-index: 1000;
}

main {
  flex: 1;
}

footer {
  margin-top: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: inherit;
  font-size: 30px;
  font-weight: 500;
}

a {
  text-decoration: none;
  color: inherit;
}

a:hover {
  text-decoration: underline;
}
