/* Essay styles for hifidiy.ca */

* {
    box-sizing: border-box;
    }

HTML {
    margin: 0px;
    padding: 0px;
    }

/* basic display layout */
BODY {
    margin: 0px;
    padding: 0px;
    background-color: white;
    @media screen {
      background-color: #C0C0C0;
      background-image: url("./bgimage.png");
      }
    }

/* main page styles, setting Header and Content behaviour */
MAIN {
    display: grid;
    grid-template-rows: auto 1fr 32px;
    width : 98%;
    color: black;
    background-color: #F8F8F8;
    font: 13pt Arial, sans-serif;
    margin: 5px auto 5px auto;
    @media screen {
      height: 98.5vh;
      max-width: 1000px;
      background-color: #F8F8F8;
      border: 1px solid black;
      border-radius: 6px;
      box-shadow: 1px 1px 4px 4px #808080;
      }
    }

/* page headers */
HEADER {
  display: block;
  width: 100%;
  height: fit-content;
  margin-bottom: 5px;
  padding: 3px;
  border-bottom: 1px solid #C0C0C0;
  }

HEADER IMG {
  display: inline-block;
  float: right;
  width: fit-content;
  height: fit-content;
  max-width: 30%;
  margin: 5px 10px 0px 10px;
  }

HEADER H1 {
  margin: 3px 5px 0px 10px;
  padding: 0px;
  }

/* Page contents */
CONTENT {
  display: block;
  padding: 5px 15px 5px 15px;
  overflow-y: auto;
  }

FOOTER {
  display: block;
  width: 100%;
  margin-top: 3px;
  padding: 2px 20px 0px 20px;
  text-align: left;
  border-top: 1px solid #C0C0C0;
  }

FOOTER DIV.date {
  display: inline-block;
  float: right;
  width: fit-content;
  }

/* comment boxes */
.note {
  display: block;
  clear: both;
  margin: 10px auto 10px auto;
  padding: 4px;
  font-size: 8pt;
  background-color: #FFFFF0;
  width: 50%;
  max-width: 75%;
  border: 1px solid black;
  box-shadow: 1px 1px 3px 2px #B0B0B0;
}

/* better block quotes */
BLOCKQUOTE {
  max-width: 80%;
}

/* keep text together */
SPAN  {
  display: inline-block;
}

/* Image trickery */
IMG {               /* default right side */
  display: block;
  float: right;
  margin: 5px 5px 5px 10px;
  width: fit-content;
  height: auto;
  max-width: 40%;
  }

IMG.multi {       /* side by side */
  display: inline-block;
  float: none;
  max-width: 30%;
  }

IMG.photo {      /* dress up photos */
  border: 1px solid black;
  border-radius: 10px;
  box-shadow: 1px 1px 3px 3px #B0B0B0;
  }

IMG.center {    /* large centered images */
  display: block;
  clear: both;
  float: none;
  width: fit-content;
  max-width: 85%;
  margin: 5px auto 5px auto;
  }

/* general style tweaks */

A {
  color: #000080;
  text-decoration: underline #A00000 2px;
  }

A:hover {
  color: #A00000;
  text-shadow: 2px 2px 3px #C0C0C0;
  }

H3 {
  display:block;
  width: fit-content;
  text-decoration: underline #0000D0 1px;
  margin: 10px 0px 2px 0px;
 }

UL {
  margin-top: 0;
}
