/*styleGTC.css  30 June 2022 S. Bailey, last update 27 Oct 2022 */

<style>

html {
  margin: 0;
  padding: 0;
}

* {
  box-sizing: border-box;
}

body {
  font-family: Lato, Arial, Helvetica, sans-serif; 
  background-image: url("chalk.jpg");
  background-color: #ffffff;
  padding-left: 11em;
  padding-right: 11em;
  margin: 0px;
  padding: 0px;
}

img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 85%;
  height: .2em;
}

img.photo {
  margin-left: auto;
  margin-right: auto;
  width: 77px;
  height: 109px;
}

li {
    padding: 10px 0 10 0;
    margin: 15px 0;  /* the value between the listed items */
    line-height: 25px; /* the smaller value when the lines wrap */
    font-size: 1em;
}

/* Style the header */
.header {
  grid-area: header;
  padding:10px 22px 0px 22px;
  text-align: center;
  font-size: 20px;
  font-style: italic;
  font-weight: bolder;
  color: #ff5f00;
}

.au {
  text-align: center;
  font-family: Lato, Arial, Helvetica, sans-serif; 
  font-style: italic;
  font-weight: bolder;
  color: #000099;
  font-size: 1.25em;
  margin-bottom: .5em;
}

/* Change color on hover */
  a:hover {
  background-color: #ddd;
  color: navy
  }
  
/* The grid container */
   .grid-container {
    display: grid;
    grid-template-areas: 
     'header header header header header header' 
     'left middle middle middle middle right' 
     'footer footer footer footer footer footer';
     grid-column-gap: 15px;
} 

.left,
.middle,
.right {
padding: 10px;
}

/* Style the left column */
.left {
  grid-area: left;
  font-family: Lato, Arial, Helvetica, sans-serif; 
  text-align: left;
}

/* Style the middle column */
.middle {
  grid-area: middle;
  font-style: normal;
  line-height: 1.5;
  font-size: 1em;
  ffont-family: Lato, Arial, Helvetica, sans-serif; 
}

/* Style the right column */
.right {
  grid-area: right;
}

/* Style the footer */
.footer {
  grid-area: footer;
  padding:0px 22px 0px 22px;
  line-height: 70%;
  text-align: center;
  color: #000099;
  bottom: 5px;
  font-size: 1em;
  ffont-family: Lato, Arial, Helvetica, sans-serif; 
}

    
/* Responsive layout - makes the three columns stack on top of each other instead of next to each other */
@media (max-width: 600px) {
  .grid-container  {
    grid-template-areas: 
      'header header header header header header' 
      'left left left left left left' 
      'middle middle middle middle middle middle' 
      'right right right right right right' 
      'footer footer footer footer footer footer';
  }
}
</style>