/* Overall body styles here */
* {box-sizing: border-box;}
body {margin: 0;
    padding: 0;
    color: #666666;}
/* Website main headline -- not sure why there's so much room above and below */
h1 {color: royalblue;
    height: 100px;
    font-family: georgia;
    background-color: white;
    text-align: center;
    text-shadow: 2px 5px gold;
    font-size: 6em;}
/* Navigation bar (as unordered list) */ 
nav {height: 40px;}
nav ul {list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: mediumaquamarine;
}
nav li {float: right;
  list-style-type: none;
}
nav li a {
  display: block;
  color: midnightblue;
  font-weight: bold;
  font-size: 1.25em;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  border-right: 1px solid white;
}
/* Changes the link color to coral on hover */
nav li a:hover:not(.active) {
  background-color: coral;
}
/* Makes active page on nav bar gold */
.active {
  background-color: gold;
}
/* Secondary headline styles */
h2 {clear: right;
    color: coral;
    font-family: Tahoma;
    text-shadow: 1px 1px darkblue;
    padding-left: 10px;
    text-align: center;
    padding-top: 15px;}
h3 {font-family: Tahoma;
    color: coral;
    text-shadow: 1px 1px darkblue;
}
/* squares instead of dots for list items */
li {list-style-type: square;
    line-height: 2.1;
    font-weight: bold;
}
/* Three column styles for homepage */
.column-wrapper{display: flex;
    width: 100%;
    flex-wrap: wrap;
    margin: 5px;
    font-size: 18px;
    padding-left: 5px;
    padding-right: 5px;
}
.col-one {float: left;
    background-color: gold;
    width: 33%;
    padding-left: 10px;
    padding-right: 5px;
}
.col-two {float: left;
    clear: right;
    background-color: seashell;
    width: 33%;
    padding-left: 15px;
    padding-right: 5px;
}
.col-three {float: right;
    background-color: royalblue;
    color: white;
    width: 33%;
    padding-left: 10px;
    padding-right: 5px;
}
/* Styles for resources and activities pages */
.resources {width: 80%;
    padding-left: 15px;
    padding-right: 15px;
    margin-right: 10px;
}
.activities {width: 80%;
    padding-left: 15px;
    padding-right: 15px;
    margin-right: 10px;
}
/* Table styles (info page) */
table {width: 80%; 
    margin: auto;
    font-family: arial;
    border: 1px solid;
    background-color: dodgerblue;
    color: white;
}
caption {color: royalblue;
    font-weight: bolder;
    font-size: 1.5em;
    text-shadow: 1px 1px gold;
    font-family: Georgia, serif;
    margin-top: 10px;
    margin-bottom: 5px;
}
td {font-family: arial;
    border: 1px solid;
    padding-left: 1em;
}
th {font-weight: bold;
    font-family: arial;
    border: 1px solid;
    color: tomato;
    text-shadow: .5px .5px navy;
    background-color: gold;
}
/* Footer styles */
footer {background-color: mediumaquamarine;
    clear: left;
    color: white;
    height: 60px;
    font-size:1em; 
    font-style: italic; 
    text-align: center; 
    padding:1em;}

/* Style for span class */   
.hub {font-weight:bold; 
   color: tomato; 
   font-size: 1.2em;}
   
/* Styles for contact form */
form {display: grid;}
.container {
  border-radius: 5px;
  background-color: lightcyan;
  padding: 20px;}
 input[type=text], select, textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  margin-top: 6px;
  margin-bottom: 16px;
  resize: vertical;}
input[type=submit] {
  background-color: tomato;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
input[type=submit]:hover {
  background-color: steelblue;
}
label {font-weight: bold;}
   
/* Styles for media queries */
@media (max-width: 600px){
    h1 {font-size: 3em;
        flex-wrap: wrap;}
    h2 {display: none;}
    nav {float: none;
    overflow: hidden;
    width: 100%;
    bottom-margin: 5px;
    }
    .column-wrapper {clear: left;
        float: left;
    }
    .col-one {display: none;}
    .col-two {width: 100%;
        float: left;
        flex-wrap: wrap;}
    .col-three {display: none;}
    img {display: none;}
    main {padding-left: 2em;
        padding-right: 2em;}
    #flow {display: flex;
        flex-direction: row;}
    #mobile {display: none;}
    #desktop {display: inline;}
/* Larger screens media query */
@media (min-width: 1024px){
        nav ul {display: flex;
        padding-right: 10%;
        padding-left: 10%;
        flex-wrap: nowrap;}
    #wrapper {margin: auto; 
        width: 80%;}
    form {width: 60%;
    display: grid;
    columns: 10em, 1fr;
    gap: 1em;
    }
