/* Default light theme */
body {
  background-color: #ffffff;
  color: #000000;
}
footer {
  background-color: #ccc;
  color: #000;
  padding: 20px;
  text-align: center;
}
.social-links a {
  margin: 0 10px;
  color: #000;
  text-decoration: none;
}

.social-links a:hover {
  color: #333;
}

/* Dark theme */
@media (prefers-color-scheme: dark) {
  body {
    background-color: #000000;
    color: #ffffff;
  }
footer {
  background-color: #333;
  color: #fff;
  padding: 20px;
  text-align: center;
}
.social-links a {
  margin: 0 10px;
  color: #fff;
  text-decoration: none;
}

.social-links a:hover {
  color: #ccc;
}
  a {
    color: #66d9ef; /* dark mode link color */
  }

  a:hover {
    color: #a1e8ff; /* dark mode hover link color */
  }
  a:visited {
    color: #c586c0;
  }
}

.social-links {
  margin-bottom: 20px;
}


.social-links i {
  font-size: 24px;
}
