/* Set a soft background color and adjust padding around the webpage */
html, body {
  background-color: hsl(52, 48%, 91%); /* Light beige color */
  color: #333333;           /* Dark gray text for good contrast */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 10px 20px 20px; /* Top: 10px, Left/Right: 20px, Bottom: 20px */
  box-sizing: border-box; /* Ensures padding doesn't affect total width */
}

/* Add padding around the content for better spacing */
main {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  background-color: #ffffff; /* White background for the main content */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
  border-radius: 8px; /* Rounded corners */
}

/* Style headings */
h1, h2, h3 {
  color: #2c3e50; /* Slightly darker color for headings */
  margin-top: 20px;
}

/* Style links */
a {
  color: #0061a2; /* A calming blue for links */
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Style lists */
ul, ol {
  margin-left: 20px;
}

/* Style code blocks */
code {
  font-family: monospace;
  background-color: #f8f8f8;
  padding: 2px 4px;
  border-radius: 4px;
  color: #c7254e;
}

/* Style for tables */
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

th, td {
  border: 2px solid hsl(0, 0%, 61%);
  text-align: left;
  padding: 8px;
}

th {
  background-color: hsl(52, 48%, 87%); /* Slightly darker beige for table headers */
  color: #333333; /* Ensure good contrast with the header text */
}
