* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  background-color: rgb(0, 0, 0);
  font-size: 16px;
  
 }


.container {
  display: grid;
  height: 100vh;
  max-width: 100vw;
  margin: 0%;
  padding: 0%;
  grid-template-columns: 1fr 1fr 450px;
  grid-template-rows: 100px 326px 1fr 65px;
  grid-template-areas: 
  "nav nav sidebar"
  "main main sidebar2"
  "info info info"
  "footer footer footer"
  ;
  font-family: 'Ubuntu', sans-serif;
  
}


h1 {
  font-size: 30px;
  padding: 5px;
  color: #4b2020;
  font-family: ethnocentric, sans-serif;
  font-weight: 400;
  font-style: normal;
}

h2 {
  font-size: 15px;
  color: #4b2020;
  font-family: ethnocentric, sans-serif;
  font-weight: 400;
  font-style: normal;
  
}

h2.h2white {
  color: antiquewhite;
  font-family: ethnocentric, sans-serif;
  font-size: 14px;
  padding-top: 3em;
  }

h2.h21 {
  padding-bottom: 0.5em;
}



p {
  font-size: medium;
  font-weight: bold;
  font-family: 'Ubuntu', sans-serif;
  color: #4b2020;
  padding: 3px;
}

.p2 {
  font-size: 14px;
  font-family: 'Ubuntu', sans-serif;
  font-weight: 400;
  text-align: justify;
  
}

.p3 {
  float: right;
  font-family: 'Ubuntu', sans-serif;
  padding: 15px 5px 0 0;
  color: antiquewhite;
  }

  .p4 {
    font-size: small;
    color: antiquewhite;
    font-weight: 400;
    text-align: center;
    
  }

ul {
  list-style-type: none;
  margin: 0;
  padding: 2em;
  
  }

  ul.low {
    list-style-type: none;
    margin: 0;
    padding: 0;
    
    }

li {
  display: inline;
}

li.col {
  display: block;
}

a:link {
  color: #832f2f;
  font-size: 100%;
  font-weight: 400;
  text-decoration: none;
}

a:visited {
  color: #ae2828;
}

a:hover {
  color: #e10c0c;
  
}

a.nav:link {
  color: #4b2020;
  font-size: 16px;
  font-weight: 300;
  padding: 2px;
  }

  a.nav2:link {
    color: antiquewhite;
    font-family: ethnocentric, sans-serif;
    font-size: .8em;
    font-weight: 200;
    
    }

a.nav:visited {
  color: #ae2828;
}

a.nav2:visited {
  color: #ceaa86;
  font-size: .2em;
}

a.nav:hover {
  color: #e10c0c;
}

a.nav2:hover {
  color: #ca5858;
}

.div2 {
  text-align: right;
  color: antiquewhite;
}

td.gap {
  width: 50px;
}

td.gap1 {
  vertical-align: top;
}

th {
  padding-bottom: 0.5em;
}

nav {
  background-color: antiquewhite;
  grid-area: nav;
  height: 100px;
  margin: 0;
  padding: 0;
  
}

#sidebar {
  background-color: antiquewhite;
  font-family: ethnocentric, sans-serif;
  font-style: normal;
  text-align: center;
  
  
}
#sidebar2 {
  background-color: black;
  padding: 15px 5px 30px 10px;
  text-align: center;
  margin: auto;
  width: 100%;
  height: 100%;
  line-height: 1.5em;
}

main {
  background-color: rgb(0, 0, 0);
  grid-area: main;  
}

#info {
  background-color: antiquewhite;
  grid-area: info;
  text-align: justify;
  padding: 25px 500px 25px 200px;
  padding-top: 25px;

    
}

footer {
  background-color: black;
  grid-area: footer;
  color: antiquewhite;
  text-align: center;
  padding: 25px;
}

@media only screen and (max-width: 750px) {

  body {
    background-color: rgb(0, 0, 0);
    font-size: 16px;
   }

  img {
    padding-top: 1.5em;
    max-width: 100%;
    height: auto;
    }

    img.small {
      max-width: 100%;
      height: auto;
      
      }

      

      

  .container {
    display: grid;
    gap: 2px;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 0.3fr 1fr 3fr 0.5fr 5px;
    grid-template-areas: 
    "nav"
    "sidebar"    
    "main"
    "info"
    "sidebar2"
    "footer"
    ;
    
  }

  h2 {
    padding-top: 0.5em;
    padding-bottom: 0.5em;
    font-size: 12px;
    color: #4b2020;
    font-family: ethnocentric, sans-serif;
    font-weight: 400;
    font-style: normal;
  }

  h2.h2white {
    color: antiquewhite;
    font-family: ethnocentric, sans-serif;
    font-size: 14px;
    padding-top: 0.5em;
    }

  nav {
    grid-area: nav;
    text-align: center;
    
  }

  #sidebar {
    grid-area: sidebar;
    background-color: bisque;
    padding-bottom: 20px;
    font-family: ethnocentric, sans-serif;
    align-self: center;
    height: 4em;
      
  }

  main {
    grid-area: main;
    text-align: center;
    padding: 0;
    margin: 0;
  }

  #info {
    padding: 5px 10px;
    
  }

  footer {
    
  }
 
  
}



