@charset "utf-8";


a:link {color: black;}
a:active {color: red;}
a:visited {color: black;}
a:hover {color: red;}

/* 
body {background: rgb(238, 255, 238);} */

footer {text-align: right; font-size:12px}

p {color: black;font-weight:normal;font-family: Arial, Helvetica, sans-serif;padding-left:10px; padding-right:10px;text-align:justify}


h1 {text-align: center;  text-decoration: underline; font-size:30px;}
h2 {color:green; text-align:center;font-size:calc(10px + 1vw );font-style: italic;} 
h3 {color:green; text-align:center;font-size:30px;font-family: Arial, Helvetica, sans-serif;}



.navlist {border: 2px double green;margin-left:25px;padding:10px ; width:200px;list-style:none;font-size:18px; font-family: Arial, Helvetica, sans-serif;}
.banner {border: 5px double green; padding:15px; background-color: WhiteSmoke;}


article {max-width: 1200px; margin: auto;}

      

/* menu code modified from https://codepen.io/mutedblues/pen/MmPNPG */   


.header {
  font-family: Helvetica, sans-serif;
  background-color: mintcream;
  border-bottom-style: double;
  border-bottom-width: thick;
  border-bottom-color: green;  
  margin-top: -2vw; margin-bottom: 0px;
  width: 100%;
  text-justify:none;
  z-index: 3;
}

.title {
   padding-top:20px;      
 }
      
.header p{
  font-size:calc(15px + 2vw); color:green; margin-bottom: 80px; text-align: left;
} 
 
.header img{ vertical-align: text-top; float: left;       
}
         
.header ul {
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
  background-color: mintcream;
  width: 100%;
}

.header li a {
  display: block;
  padding: 10px 20px;
  
  text-decoration: none;
}

.header li a:hover,
.header .menu-btn:hover {
  background-color: mintcream;
}

.header .logo {
  display: block;
  float: left;
  font-size: 2em;
  padding: 0px 0px;
  text-decoration: none;
}

/* menu */

.header .menu {
  clear: both;
  max-height: 0;
  transition: max-height .2s ease-out;
}

/* menu icon */

.header .menu-icon {
  cursor: pointer;
  display: inline-block;
  float: right;
  padding: 20px 10px 10px 10px;
  position: relative;
  user-select: none;
}

.header .menu-icon .navicon {
  background: #333;
  display: block;
  height: 2px;
  position: relative;
  transition: background .2s ease-out;
  width: 18px;
}

.header .menu-icon .navicon:before,
.header .menu-icon .navicon:after {
  background: #333;
  content: '';
  display: block;
  height: 100%;
  position: absolute;
  transition: all .2s ease-out;
  width: 100%;
}

.header .menu-icon .navicon:before {
  top: 5px;
}

.header .menu-icon .navicon:after {
  top: -5px;
}

/* menu btn */

.header .menu-btn {
  display: none;
}

.header .menu-btn:checked ~ .menu {
  max-height: 500px;
 
}

.header .menu-btn:checked ~ .menu-icon .navicon {
  background: transparent;
}

.header .menu-btn:checked ~ .menu-icon .navicon:before {
  transform: rotate(-45deg);
}

.header .menu-btn:checked ~ .menu-icon .navicon:after {
  transform: rotate(45deg);
}

.header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before,
.header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
  top: 0;
}

/* 48em = 768px */

/* menu for desktop */
@media (min-width: 50em) 
{
  .header li {
    float: left;
    margin-top: -20px; 
  }
  .header li a {
    padding: 20px 0.8vw; width:100%;
  }
  .header .menu {
    clear: none;
    float: left;
    max-height: none;
    border-bottom-style: double;
  border-bottom-width: thick;
  border-bottom-color: green; 
  }
  .header .menu-icon {
    display: none;
  }   
 