/* GENERAL ELEMENT FORMATTING */

body{
  background-color: #529371;
  font-family: "Noto Serif", Garamond, serif;
}

section {
  background-color: #fff;
  margin: 100px;
  padding: 16px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}

h1, h2 {
  text-align: center;
  font-family: "Pirata One", "Noto Serif", Garamond, serif;
}

h3, h4 {
  font-family: "Pirata One", "Noto Serif", Garamond, serif;
}

h1 {
  padding-bottom: 16px;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: #ffbf00;
}

h1::before {
            content: url('left.png');
            display: inline-block;
            margin-right: 5px;
            width: 80px;
            height: auto;
        }
h1::after {
            content: url('right.png');
            display: inline-block;
            margin-left: 5px;
            width: 80px;
            height: auto;
        }

a:link {color: #0073cf;}
a:visited {color: #529371;}
a:hover {color: #ffbf00;}




/* GALLERY AND IMAGE RESPONSIVENESS */

div.gallery {
  border: 1px solid #0073cf;
}

div.gallery:hover {
  border: 1px solid #ffbf00;
}

div.gallery img {
  width: 100%;
  height: auto;
}

div.desc {
  padding: 15px;
  text-align: center;
}

* {
  box-sizing: border-box;
}

.responsive {
  padding: 0 6px;
  float: left;
  width: 24.99999%;
}

.responsmap {
  padding: 0 6px;
  float: left;
  width: 49.99999%;
}


/* MENUBAR STUFF */

/* UL */

.mbar {

  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #529371;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: #ffbf00;
  box-shadow: 0px 4px 8px rgba(0,0,0,0.2);
}

/* LI */

.mitem {
  float: left;
  line-height: 68px;
  font-weight: bold;
}

.mitem a, .dropbtn {
  display: inline-block;
  color: white;
  text-align: center;
  padding: 16px 16px;
  text-decoration: none;

}

.logoimg {
  float: left;
  margin-right: 16px
}

.mitem a:hover, .dropdown:hover .dropbtn {
  background-color: #0073cf;
}

li.dropdown {
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  line-height: 1.2;
  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;
  text-align: left;
  font-weight: normal;
}

.dropdown-content a:hover {background-color: #ffbf00;}

.dropdown:hover .dropdown-content {
  display: block;
}


/* FIXES AND RESIZING */


div.bktop {
  position: fixed;
  bottom: 0;
  right: 0;
  width: 80px;
  height: 80px;
  margin-right: 10px;
  text-align: center;
}

a.finger {
  line-height: 80px;
  height: 80px;
  text-align: center;
}

@media only screen and (max-width: 700px) {
  .responsive {
    width: 49.99999%;
    margin: 6px 0;
  }
  .responsmap {
    width: 100%;
    margin: 6px 0;
  }
  section {
    margin: 50px;
  }
  div.bktop {
    width: 40px;
    margin-right: 5px;
  }
}

@media only screen and (max-width: 500px) {
  .responsive, .responsmap {
    width: 100%;
  }
  section {
    margin: 10px;
  }
  div.bktop {
    width: 40px;
    margin-right: 0px;
  }
}

.clearfix:after {
  content: "";
  display: table;
  clear: both;
}


