/* Basic Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body styling */
body {
  max-width: 1000px; /* Fixed-width container */
  margin: 0 auto; /* Center the container */
  font-family: "Arial", sans-serif; /* Modern sans-serif font */
  font-size: 18px; /* Base font size for readability */
  line-height: 1.6; /* Comfortable line spacing */
  color: #333; /* Soft black text for better contrast */
  background-color: #f5f5f5; /* Light background color */
  padding: 20px; /* Padding around the content */
}

/* Headings */
h1 {
  text-align: center;
}
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.2; /* Tighter spacing for headings */
  color: #222; /* Slightly darker color for headers */
  font-weight: 700; /* Bold weight for emphasis */
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

h2 {
  font-size: 1.75rem;
  margin-bottom: 16px;
}

h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

/* Paragraphs */
p {
  margin-bottom: 16px; /* Space between paragraphs */
  font-size: 1rem;
}

/* Links */
a {
  color: #0073e6; /* Modern blue color for links */
  text-decoration: none; /* Remove underline */
  font-weight: 500;
}

a:hover {
  text-decoration: underline; /* Underline on hover */
  color: #005bb5; /* Darker shade on hover */
}

/* Lists */
ul,
ol {
  margin: 16px 0;
  padding-left: 20px;
}

li {
  margin-bottom: 8px;
}
nav {
  text-align: center; /* Center the navigation */
  padding: 10px 0; /* Vertical padding */
  border-radius: 4px; /* Rounded corners for a modern look */
  margin-bottom: 20px;
}

nav ul {
  list-style: none; /* Remove bullet points */
}

/* Buttons */
button {
  padding: 10px 20px;
  font-size: 1rem;
  font-weight: 600;
  background-color: #0073e6; /* Consistent with link color */
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s;
}

button:hover {
  background-color: #005bb5; /* Darker shade on hover */
}

/* Image styling */
img {
  max-width: 100%; /* Make images responsive */
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 4px; /* Rounded corners for a modern look */
}
