/* Dark mode */
.dark-mode {
  --text-color: white;
  --background-color: black;
}

/* Apply colors globally */
body {
  color: var(--text-color);
  background-color: var(--background-color);
}

/* Inherit text color */
h2, h3, h4, h5, h6, a, li, span, div {
  color: inherit;
}
h2 {
  color: var(--text-color); /* Inherits from the CSS variable */
}

h3 {
  color: var(--text-color); /* Inherits from the CSS variable */
}


p {
  color: black; /* Inherits from the CSS variable */
}
/* Footer */
footer {
  background: #333;
  color: #fff;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
}

footer a {
  color: #ff6f61;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}
.h1 {
  color:#ff6f61;
}