 /* Reset some default styles to ensure consistency across browsers */
body, h1, h2, p, ul, li {
  margin: 0;
  padding: 0;
}

/* Set a base font and line-height for the entire website */
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

/* Style the header section */
header {
  background-color: #333;
  color: #fff;
  padding: 1rem;
}

header nav ul {
  list-style: none;
}

header nav ul li {
  display: inline-block;
  margin-right: 1rem;
}

header nav ul li a {
  color: #fff;
  text-decoration: none;
  padding: 0.5rem 1rem;
}

/* Style the main content section */
main {
  padding: 2rem;
}

main h1 {
  color: #333;
}

main h2 {
  color: #555;
}

main p {
  color: #666;
  margin-bottom: 1rem;
}

pre {
  background-color: #f5f5f5;
  padding: 1rem;
  border: 1px solid #ddd;
  border-radius: 4px;
}

code {
  color: #007bff;
}

/* Style the footer section */
footer {
  background-color: #333;
  color: #fff;
  padding: 1rem;
  text-align: center;
}

/* Add additional CSS styles based on your website design preferences */
