body {
  font-family: 'Do Hyeon';font-size: 22px;
  margin: 0;
}

/*navigator*/
.topnav {
  overflow: hidden;
  background-color: #F9F2ED;
  position: sticky;
  top: 0;
  z-index: 1;
  border-bottom: 16px solid #8AA624;
}

.topnav a {
  float: left;
  display: block;
  color: #3E2C23;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 20px;
  border-bottom: 3px solid transparent;
}

.topnav a:hover {
  background-color: #FFB400;
  border-bottom: 3px solid red;
}

 .active {
  background-color: transparent;
  color: white;
  border-bottom: 3px solid red;
}

.topnav .icon {
  display: none;
}

@media screen and (max-width: 600px) {
  .topnav a:not(:first-child) {display: none;}
  .topnav a.icon {
    float: right;
    display: block;
  }
}

@media screen and (max-width: 600px) {
  .topnav.responsive {position: relative;}
  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
}

.topnav .split {
  float: right;
  background-color: #DB1A1A;
  color: white;
}

.topnav .center {
  float: left;
  margin-top: 5px;
  margin-left: 508.5px;
  color: brown;
}

* {
  box-sizing: border-box;
}

/* Create a column layout with Flexbox */
.row {
  display: flex;
}

/* Left column (menu) */
.left {
  flex: 5%;
  padding: 15px 0;
}

.left h2 {
  padding-left: 8px;
}

/* Right column (page content) */
.right {
  flex: 65%;
  padding: 2px;
  margin: 0;
}

/* Style the search box */
#mySearch {
  width: 100%;
  font-size: 18px;
  padding: 11px;
  border: 1px solid #ddd;
}

/* Style the navigation menu inside the left column */
#myMenu {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

#myMenu li a {
  padding: 12px;
  text-decoration: none;
  color: white;
  display: block;
}

#myMenu li a:hover {
  background-color: #FFB400;
  border-bottom: 5px solid red;
}


/*side by side text*/
.box {
  float: left;
  width: 33.33%;
  padding: 90px;
}

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

/*gallery*/
.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  padding: 0 15px;
}

.gallery-item {
  position: relative;
  width: calc(25% - 20px);
  height: auto;
  margin: 10px;
  cursor: pointer;
  transition: transform 0.5s ease;
}

.gallery-item:hover {
  transform: scale(1.1);
}

/* The Modal (background) */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease;
}

/* Modal content (image) */
.modal-content {
  position: relative;
  width: 90%;
  height: auto;
  max-width: 90%;
  max-height: 90%;
  border-radius: 5px;
  overflow: hidden;
  animation: zoomIn 0.5s;
}

@keyframes zoomIn {
  from {transform: scale(0.6);}
  to {transform: scale(1);}
}

.modal.show {
  display: flex;
  opacity: 1;
}

/* Close button */
.close {
  position: absolute;
  top: 10px;
  right: 15px;
  color: #ffffff;
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.3s;
}

/* Caption of modal image */
.caption {
  position: absolute;
  bottom: 10px;
  width: 100%;
  text-align: center;
  color: #ffffff;
  font-size: 24px;
}

@media screen and (max-width: 768px) {
  .gallery-item {
     width: calc(50% - 20px);
  }
}

@media screen and (max-width: 480px) {
  .gallery-item  {
    width: calc(100% - 20px);
  }
}

@media screen and (max-width: 768px) {
  .gallery {
     width: calc(50% - 20px);
  }
}

@media screen and (max-width: 480px) {
  .gallery  {
    width: calc(100% - 20px);
  }
}


/*JAN pulldown*/
.accordion-group { 
  width: 100%; 
  max-width: 550px; 
  box-sizing: border-box; 
}
.acc-item { 
  border: 0px solid #d1d5db; 
  overflow: hidden; 
  box-shadow: 0 0px calc(0px * 2) rgba(0, 0, 0, 0.15); 
  transition: all 0.3s ease; 
}
.acc-item {
  border-radius: 0; 
  margin-bottom: -0px; 
}
.acc-item:first-of-type { 
  border-radius: 6px 6px 0 0;
}
.acc-item:last-of-type { 
  border-radius: 0 0 6px 6px; 
  margin-bottom: 0; 
}
summary { 
  padding: 22px; 
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
  cursor: pointer; 
  list-style: none; 
  transition: background 0.2s ease;
  color: white;
}
summary:hover { 
  background: #FFB400;
  border-bottom: 5px solid red;}
summary::-webkit-details-marker { 
  display: none; 
}
.acc-icon { 
  color: #4f46e5; 
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
}
.content-wrapper { 
  height: 0; 
  overflow: hidden; 
  transition: height 0.3s ease; 
  background: #53CBF3; 
}
.content-body { 
  padding: 25px; 
  color: #FFF6F6; 
  line-height: 1.6; 
}
.acc-item.is-open .acc-icon { 
  transform: rotate(180deg); 
}


/*date & year input*/
