/* Styles for section elements */
section {
  background-color: aliceblue; /* Light blue background color */
}

/* Styles for main heading */
h1 {
  font-family: Arial, Helvetica, sans-serif; /* Font family for the text */
  color: saddlebrown; /* Text color */
  text-align: center; /* Center align the text */
  background-color: oldlace; /* Background color */
}

/* Styles for subheadings */
h2 {
  background-color: blanchedalmond; /* Background color */
  text-align: center; /* Center align the text */
  width: 440px; /* Width of the element */
  margin: 20px; /* Margin around the element */
  border: 3px dotted white; /* Border style */
}

/* Styles for section elements, overriding the background color */
section {
  display: inline-block; /* Display sections inline */
  width: 200px; /* Width of the sections */
  margin: 22px; /* Margin around sections */
  border: 1px dodgerblue dashed; /* Border style */
}

/* Styles for the Cat image */
#Cat {
  border: 3px double; /* Double border */
  width: 440px; /* Width of the image */
  padding: 13px; /* Padding around the image */
}

/* Styles for the cart image */
#cart {
  border: 3px double; /* Double border */
  width: 440px; /* Width of the image */
  padding: 13px; /* Padding around the image */
}
