body {font-family: 'Comfortaa', cursive; }

li {display: inline; list-style-type: none; padding-top: 5px; padding-bottom: 5px; padding-left: 5px; padding-right: 5px;  color: forestgreen; }

ul.primary {background-color: gold; color: forestgreen; text-align: center; padding: 10px; }

#logo {vertical-align: middle; border-style: none; height: 35%; width: 35%; }

#fun {text-align: right;}

h3 {text-decoration: underline; }

#navigation a {text-decoration: none; color: forestgreen; }

#navigation a:hover {text-decoration: underline; color: forestgreen; }

#current {color: forestgreen; border-bottom: solid 3px forestgreen; }

#skip-links{ width: 100%; }

#skip-links a{ color:white; text-decoration: none; }

#skip-links a:hover {text-decoration: underline; }

#body {margin-bottom: 5%; margin-top: 2%; margin-left: 10%; margin-right: 10%; }

footer {position: fixed; bottom: 0; right: 0; width: 40%; border: 3px solid forestgreen; background-color: gold; }

.main {width: 60%; float:left; padding: 1%; }

#news {width: 20%; float:left; padding: 1%; }
             
#header input[type=text] {position: static; float: right; padding: 6px; margin-top: 8px; margin-right: 16px; font-size: 17px; background-color: #FCF1BF; border: 3px solid forestgreen; }
             
@media screen and (max-width: 960px){.main{width:100%;}}
             
@media screen and (max-width: 960px){#news{width:100%;}}
             
@media screen and (max-width: 960px){footer{display: none;}}
             
@media screen and (max-width: 960px){#logo{width:70%; height: 70%}}
             
@media screen and (max-width: 960px){#fun{width: 80%; align-content: center;}}

.dropbtn {background-color: gold; color: forestgreen; padding: 16px; font-size: 16.5px; font-family: 'Comfortaa', cursive; border: none;}

.dropdown {position: relative; display: inline-block; }

.dropdown-content {display: none; position: absolute; background-color: #f1f1f1; min-width: 160px; box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2); z-index: 1; }

.dropdown-content a {color: black; padding: 12px 16px; text-decoration: none; display: block; }

.dropdown-content a:hover {text-decoration: underline; background-color: goldenrod; color: forestgreen; }

.dropdown:hover .dropdown-content {display: block; text-decoration: underline; background-color: gold; color: forestgreen;}

.dropdown:hover .dropbtn {text-decoration: underline; background-color: gold; color: forestgreen; }

table, th, td {border: 1px solid black; }

th {background-color: forestgreen; }

td {background-color: darkseagreen; }

#header input[type=text] {position: static; float: right; padding: 6px; margin-top: 8px; margin-right: 16px; font-size: 17px; background-color: #FCF1BF; border: 3px solid forestgreen; }

#breadcrumb {padding: 10px; list-style: none;}

#breadcrumb li {display: inline; font-size: 18px;  }

#breadcrumb li+li:before {padding: 8px; color: white; content: "/\00a0"; }

#breadcrumb li a {color: white; text-decoration: none; }

#breadcrumb li a:hover {color: forestgreen; text-decoration: underline; }

.caption {font-size: x-small; color: white; }

#woods, #uniform {border: 5px solid forestgreen; }



 /*cloud CSS from https://codepen.io/_ItsJonQ/full/yvfD*/
html,
body {
  background-color: #85b9dd;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  font-family: 'Comfortaa', cursive;
}

* {
  position: relative;
}

.frame {
  width: 500px;
  height: auto;
  margin: 15% auto 0;
  position: absolute;
  width: 100%;
}

svg {
  max-width: 100%;
  height: auto;
  display: block;
}

/**
 * Clouds
 */
.clouds {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  transform: translateZ(0);
}

.cloud {
  position: absolute;
  top: 20%;
  width: 300px;
  right: 0;
  opacity: 1;
}

.cloud.front {
  z-index: 9;
}

.cloud.distant {
  z-index: 1;
}

.cloud.background {
  z-index: 1;
}

/*Cloud Sizing*/
.cloud.smaller {
  margin-right: 400px;
  width: 100px;
  margin-top: 50px;
}

.cloud.small {
  margin-right: 200px;
  width: 150px;
}

.cloud.big {
  width: 500px;
  margin-top: 50px;
  margin-right: 150px;
}

.cloud.massive {
  width: 600px;
  margin-top: 20px;
  margin-right: 0px;
}


/*Cloud: Animation*/
.cloud {
  -webkit-animation-name: cloud-movement;
  -webkit-animation-timing-function: linear;
  -webkit-animation-direction: forwards;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-duration: 8s;

  -moz-animation-name: cloud-movement;
  -moz-animation-timing-function: linear;
  -moz-animation-direction: forwards;
  -moz-animation-iteration-count: infinite;
  -moz-animation-duration: 8s;

  animation-name: cloud-movement;
  animation-timing-function: linear;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-duration: 8s;
}

.slow {
  -webkit-animation-duration: 9.2s;
  -moz-animation-duration: 9.2s;
  animation-duration: 9.2s;
}

.slower {
  -webkit-animation-duration: 11.2s;
  -moz-animation-duration: 11.2s;
  animation-duration: 11.2s;
}

.slowest {
  -webkit-animation-duration: 13.5s;
  -moz-animation-duration: 13.5s;
  animation-duration: 13.5s;
}

.super-slow {
  -webkit-animation-duration: 20.5s;
  -moz-animation-duration: 20.5s;
  animation-duration: 20.5s;
}

@-webkit-keyframes cloud-movement {
  0% {
    opacity: 0.1;
    -webkit-transform: translateX(300px);
    -moz-transform: translateX(300px);
    transform: translateX(300px);
  }
  10% {

    opacity: 0.7;
  }
  90% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-1000px);
    -moz-transform: translateX(-1000px);
    transform: translateX(-1000px);
  }
}
    /*end of cloud CSS from https://codepen.io/_ItsJonQ/full/yvfD*/





