/* 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."
   
   color theme:
   pale yellow: #f2e6ac
   dark blue:  #111A19;
   dark orange brown: #bb6830;
   light blue green: #809076;
   dark blue green: #284139;
   alternative to pale yellow, more creamy/brown: #d6bd98
   
   heading fonts: do_hyeonregular
   
   */


body {
  color: black;
  background-color: #f2e6ac; /*stronger yellow: #f8e794; */
}


p {
  font-size: 20px
  
}

h1 {
  text-align: center;
  font-family: 'do_hyeonregular', Arial;
  /*text-transform: uppercase;*/
  letter-spacing: 3px;
  font-size: 15px;
  
}

h2 {
  text-align: center;
  font-family: 'do_hyeonregular', 'Courier New', Arial;  
  font-size: 3px;
  
}

.title {
  background-color: #809076; /*stronger yellow: #f8e794; */
  font-size: 55px;
  width: 100%;
  padding-top: 25px;
  padding-bottom: 25px;
  position: sticky;

}


.title-text {
  size: 20px;
  color: #111A19; /*dark blue */

}


div.gallery {
  border: 0px solid #ccc;
  margin: 20px;
}

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

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

div.desc {
  padding: 15px;
  text-align: center;
  font-family: 'do_hyeonregular';
}

* {
  box-sizing: border-box;
}

.responsive {
  padding: 2 6px;
  float: none;
  width: 24.99999%;
}

@media only screen and (max-width: 700px) {
  .responsive {
    width: 49.99999%;
    margin: 6px 0;
  }
}

@media only screen and (max-width: 500px) {
  .responsive {
    width: 100%;
  }
}

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