/* universalstyles.css */

body {
  background-color: #121212;
  color: #e0e0e0;
  font-family: Arial, sans-serif;
  margin: 0;
}

.site-header {
  background-color: #171717;
  padding: 20px;
  text-align: center;
}

.site-header h1 {
  margin: 0;
  font-size: 2em;
}

.site-header a {
  color: #00ff90;
  text-decoration: none;
}

.site-header nav {
  margin-top: 10px;
}

.site-header nav a {
  margin: 0 10px;
  color: #00ff90;
  text-decoration: none;
}

.site-header nav a:hover {
  text-decoration: underline;
}

.site-footer {
  background-color: #171717;
  color: #e0e0e0;
  text-align: center;
  padding: 20px;
  font-size: 0.9em;
}

.site-footer a {
  color: #00ff90;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.site-content {
  padding: 40px;
}

.header-flex {
  display: flex;
  justify-content: center;  /* ✅ Center horizontally */
  align-items: center;      /* ✅ Center vertically if you ever add height */
}

.site-logo img {
  height: 50px;    /* Or whatever size you want */
  width: auto;
}

.site-nav a {
  margin-left: 20px;
}
