/* styling of links in the foot */
.foot-links {
     text-decoration: none;
     color: #333;          
     font-weight: bold;
     word-spacing: 10px;
}
.foot-links A:link {
     text-decoration: none;
     color: #333;          
     font-weight: bold;
     }
.foot-links A:visited {
     text-decoration: none;
     color: #333;
     font-weight: bold;
     }
/* styling of links in the foot */


h1{font-size:28px; color:#666666; font-weight:bold;}
h2{font-size:24px; color:#666666; font-weight:bold;}
h3{font-size:18px; color:#666666; font-weight:bold;}
h4{font-size:14px; color:#666666; font-weight:bold;}
cCap{font-size:22px; color:#FFF; font-weight:normal;text-shadow: 2px 2px 5px purple}

.container {
  display: flex
  margin: 0 auto;
  padding: 0px 20px 0px;
  background:#ffffff;
}

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

.content {
    padding: 20px 0px;
    flex: 1 1 auto;
    }

.flex-container {
  display: flex;
  flex-wrap: wrap; /* Enables wrapping of flex items */
  margin-top: 20px;
  background-color: #fff;
}
 .flex-content { 
   flex: 1 1 auto; /* Allows content to grow and shrink */
   background-color: #fff;
   justify-content: center;
   }
.flex-item {
  flex: 0 1 auto; /* no grow, yes shrink*/
  background-color: #fff;
  color: #666666;
  padding: 5px 20px 5px 20px;
  width: 60%;
  height: auto;
  min-width: 100px;
}
.flex-image {
  padding: 0px;
  margin-top: 30px; 
  width:40%;
  height: auto;
  }
/* menu */
ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
li {
  float: right;
  }
li a {
  display: block;
  text-align: center;
  padding: 10px 20px;
  text-decoration: none;
  font-size: 18px;
}
li a:hover {
  color:#666666;
  text-shadow: 1px 1px 10px black;
  text-decoration: none;
  }
li a:active {
  color: #666666;
  text-shadow: 1px 1px 10px black;
  text-decoration: none;
  }
li a:visited {
  color: #666666;
  text-decoration: none;
  }
/* end menu */
