/* Set font and background color for the entire page */
body {
  font-family: Arial, sans-serif;
  background-color: #f5f5f5;
}

/* Style the header */
header {
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 20px;
}

/* Style the main content */
main {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

/* Style the section headings */
section h2 {
  color: #333;
  border-bottom: 1px solid #ccc;
  margin-top: 40px;
  margin-bottom: 20px;
}

/* Style the paragraph text */
p {
  line-height: 1.5;
  margin-bottom: 20px;
}

/* Style the images */
img {
  display: block;
  height: 100%;
  width: 100%;
  margin: 20px auto;
  border: 1px solid #ccc;
}

/* Style the footer */
footer {
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 10px;
}
