/* @import url("https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap"); */

/* @import url("https://fonts.googleapis.com/css2?family=Work+Sans:wght@700&display=swap"); */

@import url("https://fonts.googleapis.com/css2?family=Space+Mono&display=swap");
body {
  font-family: "Space Mono", monospace;
  font-variant-ligatures: none;
  display: flex;
  flex-direction: column;
  flex-flow: column;
  background-color: white;
  padding: 2em;
  color: #333;
  transition: background-color 0.3s, color 0.3s;
}

.container {
  width: 50%;
  margin: 0 auto; /* Center the container */
  margin-bottom: 100px;
}

.hello {
  margin-top: 20px;
}

.beta-sub {
  font-size: 12px;
}

nav {
  margin-bottom: 10%;
}

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

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

nav li {
  display: inline;
  margin-right: 1em;
}

.footer-content {
  width: 50%;
}

a {
  color: #222; /* Default link color */
  text-decoration: none;
}

a:visited {
  color: #222; /* Same color for visited links */
}

a:hover {
  color: #222; /* Color for hovered links */
  text-decoration: underline;
}

footer.foot {
  background-color: #ffffff;
  color: #222;
  position: fixed;
  font-size: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-flow: column;
  align-self: center;
  width: 100%;
  bottom: 0;
}

section {
  margin-top: 6%;
}

/* Add this to your existing styles.css */

.social-icons {
  margin-top: 10px;
}

.social-icons a {
  display: inline-block;
  margin-right: 10px;
  color: #333;
  font-size: 16px;
  text-decoration: none;
}

.social-icons a:hover {
  color: #ffffff; /* Change color on hover to a different color */
}

@media only screen and (max-width: 800px) {
  body {
    padding: 0px;
  }
  .container {
    width: 95%; /* Adjust container width for small screens */
  }
  .footer-content {
    width: 95%;
  }
}

/* Dark mode styles using the prefers-color-scheme media query */
@media (prefers-color-scheme: dark) {
  footer.foot,
  body {
    background-color: #222;
    color: #ffffff;
  }

  a {
    color: #ffffff; /* Default link color */
    text-decoration: none;
  }

  a:visited {
    color: #d1d1d1; /* Same color for visited links */
  }

  a:hover {
    color: #dadada; /* Color for hovered links */
    text-decoration: underline;
  }
}
