.container {
  display: grid; 
  grid-template-columns: 0.2fr 1fr; 
  grid-template-rows: 150px 30pxfr 1fr 30px; 
  font-family: Tahoma, Verdana, sans-serif;
  gap: 0px 0px; 
  grid-template-areas: 
    "header header"
    "navbar navbar"
    "menu main"
    "footer footer";
}

body {
  margin: 0px;
  background-image: url("../images/bkg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

p { font-size: 16px; line-height: 24px; margin-top: 5px; margin-bottom: 5px; }

h2 {
  display: block;
  font-size: 1.5em;
  margin-top: 0.83em;
  margin-bottom: 0.83em;
  margin-left: 0;
  margin-right: 0;
  font-weight: bold;
}

h4 {
  display: block;
  font-size: 1.2em;
  margin-top: 0.67em;
  margin-bottom: 0.67em;
  margin-left: 0;
  margin-right: 0;
  font-weight: bold;
}

.header { 
  grid-area: header; 
  text-align: center;
}

.navbar { 
  grid-area: navbar; 
  color: white;
  padding: 14px 20px;
  text-decoration: none;
  text-align: left;
  background: #008b8b;
}

/* Style the navigation bar links */
.navbar a {
  color: white;
  padding: 14px 20px;
  text-decoration: none;
  text-align: left;
}

.navbar a:hover {
  background-color: #eeffff;
  color: black;
}

.menu { 
  grid-area: menu; 
  background-color: #99ddaa;
  align-content: left;
  white-space: nowrap;
}

.main { 
  grid-area: main;
  padding: 10px;
  font-size: 20px;
  overflow-y: auto;
}

.sticky {
  position: -webkit-sticky; /* Safari */
  position: sticky;
  top: 10px;
}

.footer { 
  grid-area: footer; 
  padding-top:10px;
  text-align: center;
  font-size: 20px;
  background: #008b8b;
  width: 100%;
  height: 50px;
}


/* Modifying how the links appear in the left hand menu column */
a.main:link, a.main:visited {
    background-color: #5f9ea0;
    color: #F8ECE0;
    padding: 4px 5px;
    text-align: left;
    text-decoration: none;
	border-left: 12px solid #008b8b;
	border-right: 2px solid #008b8b;
    display: inline-block;
}

a.main:hover, a.main:active {
    background-color:#00CCCC ;
	color: black;
}

a.unit:link, a.unit:visited {
    background-color: #0077FF;
    color: white;
    padding: 4px 5px;
    text-align: center;
    text-decoration: none;
	border-left: 12px solid #F8ECE0;
	border-right: 2px solid #F8ECE0;
    display: inline-block;
}

a.unit:hover, a.unit:active {
    background-color:#00AAff;
	color: black;
}

.footer a:link, a:visited {
  color: #ffffff;
  background-color: #008b8b;
  text-decoration: none;
}

.footer a:hover, a:active {
    background-color: #00CCCC;
    display: inline-block;
}

.responsive-img {
  max-width: 100%;
  height: auto; 
}

ul {
  list-style-type: none;
  line-height: 130%;
}
