/* Color reference: 
brownblack: #544544
pale yellow: #ffffcc
yellow: #ffff9d
blue: #66cccc
bronze: #cc9966 */

/*page setup*/
html,body {margin: 0;
          padding: 0px;
          border: 0px;
          left: 0px;
          top: 0px;
          background-image: url(paper.jpg);
          background-color: #ffffcc;
          color: #544c4c;
          font-family: Justice;}

/*font install*/
@font-face {
    font-family: Justice;
  src: url("fonts/JusticeRegular.otf");
}

@font-face {
    font-family: Justice;
    font-weight: bold;
    src: url("fonts/JusticeBold.otf");
}

@font-face {
    font-family: Justice;
    font-style: italic;
    src: url("fonts/JusticeItalic.otf");
}

@font-face {
    font-family: Justice;
    font-weight: bold;
    font-style: italic;
    src: url("fonts/JusticeBoldItalic.otf");
}

/*paragraph styles*/
p, li {font: 1em "Justice", Rockwell;}
h1 {font: 2em Bold "Justice", Rockwell;}
h2 {font: 1.5em Bold Italic Rockwell, "Justice", Georgia;}
h3 {font: 1.25em Italic Rockwell, "Justice", Georgia;}
ul {background-image: url(icons/handblue.png);
    background-position: 15px 10px;
    background-size: 3em;
    background-repeat: no-repeat;
    list-style-type: none;
    margin: 5;
    padding: 0px 70px 5px;
    overflow: hidden; }

/*links*/
a:link {font-family: "Justice", georgia;
        font-style: italic;
        color: #66cccc;
        text-decoration: underline;}
a:visited {color: #cc9966;}
a:hover {background: #ffff9d;
         color: #cc9966;}

/*/////////////////////////////////////////////*/

* {
  box-sizing: border-box;
}


/* nav bar */
.topnav {
  position: relative;
  background-color: #ffffcc;
  overflow: hidden;
  padding: 5px 120px
}

/* nav bar links and left-aligned section*/
.topnav a {
  float: left;
  color: #66cccc;
  text-align: center;
  padding: 15px 15px 5px;
  border: 16px solid #ffffcc;
  text-decoration: none;
  font-size: 17px;
}

.topnav a:hover {
  background-color: #ffffcc;
  color: #cc9966;
}

/* Centered section inside the top navigation */
.topnav-centered a {
  float: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.topnav-centered a:hover {
  background-color: #ffffcc;
}

/* Right-aligned section inside the top navigation */
.topnav-right {
  float: right;
}

/* Responsive Design */
@media screen and (max-width: 600px) {
  .topnav a, .topnav-right {
    float: none;
    display: block;
  }

  .topnav-centered a {
    position: relative;
    top: 0;
    left: 0;
    transform: none;
  }
  
  .column {
    width: 100%;
  }
}

/* Style the content */
.content {/*background-color: #ffffcc;*/
          padding: 20px 200px;}

.column {float: left;
        padding: 30px}
.column.middle {width: 60%;}
.column.side {width: 40%;}
.row:after {content: "";
            display: table;
            clear: both;}
            
            

/* Homepage Gallery */

/* Position the image container (needed to position the left and right arrows) */
.container {
  position: inherit;
}

/* Hide the images by default */
.mySlides {
  display: none;
  border: 3px solid #66cccc;
}

/* Add a pointer when hovering over the thumbnail images */
.cursor {
  cursor: pointer;
}

/* Next & previous buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 10px;
  margin-top: -50px;
  color: white;
  font-weight: bold;
  font-size: 20px;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 230px;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
  background-color: #66cccc;
  color: white;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #cc9966;
  font-size: 12px;
  padding: 2px 0px;
  position: relative;
  text-align: center;
}

/* Container for image text
.caption-container {
  text-align: center;
  background-color: #222;
  padding: 2px 16px;
  color: white;
} */

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

/* Six columns side by side */
.galcolumn {
  float: left;
/*   width: 25%;  */
}


/* Add a transparency effect for thumnbail images */
.demo {
  opacity: 0.6;
}

.active,
.demo:hover {
  opacity: 1;
}



/* Style the footer */
.footer {
  background-color: #544544; 
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 65px;
  color: #cc9966;
  text-align: center;
}
