/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: white;
  color: black;
  font-family: Verdana;
  font-size: 16pt;
}
h1 {
    font-size: 250%;
    font-weight: bold;
    margin-bottom: .2em;
}
h2 {
    font-size: 200%;
    font-weight: bold;
    margin-bottom: .2em;
    clear: both
}
#site-header {
    margin-bottom: 2%;
}
#logo {
    width:100%;
    max-width:2400;
}
#navigation {
    
}
    #navigation li {
        margin-bottom:2%;
        float:left;
        width: 32%;
    }
        #navigation li+li {
            margin-left: 2%;
        }
        #navigation li:nth-child(3n+1) {
            margin-left: 0;
            clear:both;
        }
    #navigation li img {
        width:100%;
    }
    
.gallery {
   clear:both;
}
    .gallery li {
        margin-bottom:2%;
        float:left;
        width: 32%;
    }
        .gallery li+li {
            margin-left: 2%;
        }
        .gallery li:nth-child(3n+1) {
            margin-left: 0;
            clear:both;
        }
    .gallery li img {
        width:100%;
    }
.video {
    position: relative;
    padding-bottom: 177.77%;
    clear:both;
    height:0;
    overflow:hidden;
    margin:0px auto 2%
}
    .video iframe {
        position: absolute;
        top:0;
        left:0;
        width: 100%;
        height: 100%;
    }
footer{
    clear: both;
}
