
body{
  background-color: oldlace;
  font-family: sans-serif;
  font-size: 16pt;
  font-weight: bold;
  
  counter-reset: hdrsec;
}

h2{
  background-color: lightgray;
}

h2::before {
  counter-increment: hdrsec;
  content: "Property " counter(hdrsec) ": ";
}


li{
  margin: 5px;
}

.info1{
  border: 4px red solid;
  background-color: mistyrose;
  padding: 5px;
}

::marker{
  color: blue;
  font-size: 30px;
}

ul li::marker{
  color: blue;
  font-size: 30px;
  content: "🙂";
}

.chgcaret{
  caret-color: green;
  font-size: 2rem;
  font-weight: bold;
}

.chgcaret2{
  /*caret-color: green;*/
  font-size: 40px;
  font-weight: bold;
}

.accentred{
  accent-color: red;
  width: 20px;
  height: 20px;
}

.accentgreen{
  accent-color: green;
  width: 20px;
  height: 20px;
}

