
/* Comments here. */


header, main, section, article, footer, aside, figure, figcaption {
  display: block;
}

* {
  box-sizing: border-box;
}

/* Create two equal columns that float next to each other */
.column {
  float: left;
  width: 50%;
  padding: 10px;
  height: auto;  
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .column {
    width: 100%;
  }
}

li a {
 display: block;
 color: #ffffff;
 text-align: center;
 padding: 15px 30px;
 text-decoration: none;
}

header {
  background-color: transparent;  
  color: #000000;
  width: 100%;
  height: auto%;
  margin: 10px 0px;
  float: left;
}

.headertitle {
  text-align: center;
  font-size: 3rem;
  color: #000000;
  font-style: normal;
  font-family: 'Julius Sans One'; 
}

h1 {
  text-align: left;
  font-size: 56px;
  color: #000000;
  font-style: normal;
  font-family: 'Archivo Narrow';
  font-variant-caps: small-caps;
}

h2 {
  text-align: left;
  font-size: 48px;
  color: #000000;
  font-family: 'Archivo Narrow';
  font-variant-caps: small-caps;
}

h3 {
 text-align: left;
 font-family: 'Archivo Narrow';
 font-variant-caps: small-caps;
 color: #000000;
 font-size: 36px;
}

h4 {
 text-align: left;
 font-family: 'Archivo Narrow';
 font-variant-caps: small-caps;
 color: #000000;
 font-size: 24px;
}

.clearfix {
 overflow: auto;
}

.homepageimg {
  width: 100%;
  height: auto;
  object-fit: cover;
/*fill, contain, none, cover, scale-down*/
}

nav {
  display: flex;
  justify-content: center;
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 10px;
  padding-bottom: 10px;
  overflow: hidden;
  background-color: transparent;
  color: #000000;
  font-size: 1.2rem;
  font-family: 'Source Sans Pro';
  text-decoration: none;
}

@media screen and (max-width: 600px){
nav> ul {
    display: block;
    width: 100%;
    margin: auto;
}

nav> ul> li {
    display: block;
    width: auto;
    width: 100%;
    }
}

li a {
  display: inline;
  color: #000000;
  text-align: left;
  padding: 10px 30px;
  margin: 10px;   
  text-decoration: none;
  text-indent: 0px;
}

.li2 {
  float: left; 
}

.li2 a:link {
  color: #000000;
  margin-left: 0%;
  text-decoration: none;
}

.li2 a:visited {
  color: gray;
}

.li2 a:hover {
  background-color: none;
  text-decoration: underline;
  color: #000000;
}

.li2 a:active {
  text-decoration: underline;
  color: none;
}

.link-style {  
  color: blue;
  text-decoration: underline;
}

.link-style:visited {
  color: blue;
  text-decoration: underline;
}

.link-style:hover {
  color: blue;
  text-decoration: underline;
}

.link-style:active {
  color: blue;
  text-decoration: underline;
} 

ul {
  list-style-type: none;
  text-align: left;
  text-indent: 0px;
}

.disc {
  list-style-type: disc;
  text-align: left;
}

.circle {
  list-style-type: circle;
  text-align: left;
}

.square {
  list-style-type: square;
  text-align: left;
}
  
ul li {  
  padding: .2em; 
  text-align: left;
  line-height: 1.6em;
  text-indent: 0px;
}

ol li {  
  padding: .2em; 
  text-align: left;
  text-indent: 0px;
  line-height: 1.6em;
}

.leftmarginalign {
  list-style-type: none;
  text-align: left;
  padding: 0px; 
  font-weight: bold;
}

.leftmarginalignnormal {
  list-style-type: none;
  text-align: left;
  padding: 0px; 
  font-weight: normal;
}

li::after {
  content: "";
  display: table;
  clear: both;
}

.row::after {
  content: "";
  display: table;
  clear: both;
}

body {  
  text-align: left;
  font-family: 'Source Sans Pro';
  color: #000000;
  font-size: 1.2rem;  
  background-color: #ffffff;
  width: 80%;
  height: auto;
  margin: 0 auto; 
  overflow: auto;    
}

@media screen and (max-width: 600px) {
  body {
    width: 100%;
    font-size: 16px;
  }
}

p {
  line-height: 1.6em;
  text-align: left;
}

.highlightbackground {
  background-color: #dddddd;
}

/* Main is the wrapper. Leave width & height this way to center on page.*/
main {
  background-color: transparent;  
  overflow: auto;
  width: 100%;
  height: auto;
  padding: 10px;
}

/* Section is for images. */
section { 
  text-align: left; 
  background-color: transparent;
  padding: 10px;
  margin-bottom: 3rem;
  margin-top: 50px;
  color: #000000;  
}

/* Article is for text. */
article {
  background-color: transparent;
  padding: 10px 60px;
  margin: 10px;
  color: #000000;
  margin: 10px 0px;
  margin-bottom: 60px;    
}

@media screen and (max-width: 600px) {
  article {
    padding: 5px 10px;
    margin 5px;
  }
}

table {
  border-collapse: collapse;
  width: 100%;
}

td, th {
  width: 50% 30%;
  border: 1px solid #dddddd;
  text-align: left;
  padding: 8px;
}

tr:nth-child(even) {
  background-color: #dddddd;
}

.row:after {
  content: "";
  display: table;
  clear: both;
}

.blockquote {
  background-color: #f2f2f2;
  padding: 20px;
  margin: 20px;
  text-align: justify;
}

@media screen and (max-width: 600px) {
  .blockquote {
    padding: 5px 7.5px;
    margin 5px;
  }
}

.row:after {
  content: "";
  display: table;
  clear: both;
}

section::after {
 content: "";
 display: table;
 clear: both;
}

header::after {
 content: "";
 display: table;
 clear: both;
}

footer {
 font-size: 16px; 
 background-color: transparent;
 color: #000000;
 text-align: center;
 padding: 10px; 
 margin: 10px; 
}

.textaligncenter {
 text-align: center;
 
}

.logo {
 display: inline;
 background-color: black;
 padding: 10px 20px;
 color: white;
 font-family: "Barlow Condensed", sans-serif; font-weight: 400; font-style: normal;
 font-size: 20px;
 font-weight: 400;
 text-algin: center;
 text-decoration: none;
}

.logo:visited {
 color: white;
}

.logo:hover {
 background-color: white;
 color: black;
 text-decoration: none;
}

.footer:link {
  color: #000000;
  margin-left: 0%;
  text-decoration: none;
}

.footer:visited {
  color: gray;
}

.footer:hover {
  background-color: none;
  text-decoration: underline;
  color: #000000;
}

