/* Element selector here */
h1 {
  font-family: 'Segoe UI', Arial, sans-serif;
  color: #b91c1c;
  text-align: center;
  margin-bottom: 0.25rem;
}

/* 2) Class selector here */
.properties {
  background-color: #f5f5f5;
  padding: 12px;
  border-radius: 8px;
  width: 80%;
  margin: 1rem auto;
}

/* 3) ID selector here */
#overview {
  border-left: 4px solid #ef4444;
  padding-left: 12px;
  margin: 1rem auto;
  width: 80%;
}

/* Additional optional styling done here for better quality!! */
body {
  font-family: Georgia, serif;
  line-height: 1.5;
  margin: 20px;
  background-color: #fff;
  color: #111;
}

img {
  display: block;
  margin: 20px auto;
  max-width: 100%;
  height: auto;
}

footer.footer-note {
  text-align: center;
  font-size: 0.9rem;
  margin-top: 20px;
  color: #555;
}
