<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body 
{
  background-color: white;
  color: black;
  font-family: Verdana;
}

#heading 
{
  height: 256px;
  position: relative;
  padding-left: 10%;
  
  background-color: red;
  /*background-image: url("images/DarkWood_Background.jpeg");*/
  background-size: cover;
  
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr;
  justify-content: center;
  align-items: center;
}

#title
{
  color: white;
  font-weight: bold;
  font-size: 24px;
  
  position: absolute;
  grid-column: 1/2;
}

#headingPhoto
{
  width: 192px;
  height: 192px;
  position: absolute;
  grid-column: 2/3;
}

/*img*/
/*{*/
/*  width: 100%;*/
/*  height: auto;*/
/*}*/
</pre></body></html>