/* styles.css */

/* Reset some defaults */
body, h1, h2, p, ul, li, a {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: #0d1117;
  color: #c9d1d9;
  line-height: 1.6;
  padding: 20px;
}

header {
  background-color: #161b22;
  padding: 20px;
  margin-bottom: 40px;
  border-radius: 10px;
}

header h1 {
  font-size: 2.5rem;
  color: #58a6ff;
}

header p {
  margin-top: 10px;
  color: #8b949e;
}

nav {
  margin-top: 15px;
}

nav a {
  margin-right: 15px;
  text-decoration: none;
  color: #58a6ff;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #1f6feb;
}

main {
  max-width: 800px;
  margin: 0 auto;
}

section {
  margin-bottom: 40px;
}

section h2 {
  color: #79c0ff;
  margin-bottom: 15px;
}

section ul {
  list-style-type: disc;
  padding-left: 20px;
}

section ul li {
  margin-bottom: 10px;
}

a {
  color: #58a6ff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
  color: #1f6feb;
}

footer {
  text-align: center;
  padding: 20px;
  margin-top: 60px;
  color: #8b949e;
  border-top: 1px solid #30363d;
}
