body,.lightbox-caption,.time,p,h1,h2,h3,h4,h5,h6 {
  font-family: "Inconsolata", monospace;
  font-weight: 500;
}

body {
  max-width: 768px;
  margin: 0 auto;
  padding: 40px 5%;
  color: #111;
}

p, .lightbox-caption { font-size: 1.35rem; }
h1,h2,h3, h4 { font-size: 1.5rem; }
.time    { font-size: 1.2rem; }

h4 {
  margin-bottom: 16px;
}

::-moz-selection { /* Code for Firefox */
  color: rgba(202, 219, 232, 1);
  background: green;
}

::selection {
  color: rgba(202, 219, 232, 1);
  background: green;
}

.split {
  position: fixed;
  top: 0;
  bottom: 0;       /* pin to the bottom of the viewport */
  left: 0;
  right: 0;
  overflow-y: auto;
}

.split::after {
  content: "";
  display: block;
  height: 50px;  /* or however many px you need for the bottom UI */
}

.left {
  left: 0;
  background: #cae8d1;
  background: linear-gradient(-90deg, rgba(202, 232, 209, 1) 0%, rgba(242, 237, 237, 1) 26%, rgba(242, 237, 237, 1) 74%, rgba(202, 232, 209, 1) 100%);
}

.right {
  right: 0;
  background: #CADBE8;
  background: linear-gradient(-90deg, rgba(202, 219, 232, 1) 0%, rgba(242, 237, 237, 1) 26%, rgba(242, 237, 237, 1) 74%, rgba(202, 219, 232, 1) 100%);
  border-left: 1px dotted black;
  overflow-y: scroll;
  height: 100vh;
  --sb-track-color: #d3dfe1;
  --sb-thumb-color: darkgrey;
  --sb-size: 14px;
}

.right::-webkit-scrollbar {
  width: var(--sb-size)
}

.right::-webkit-scrollbar-track {
  background: var(--sb-track-color);
  border-radius: 3px;
}

.right::-webkit-scrollbar-thumb {
  background: var(--sb-thumb-color);
  border-radius: 3px;
  
}

@supports not selector(::-webkit-scrollbar) {
  .right {
    scrollbar-color: var(--sb-thumb-color)
                     var(--sb-track-color);
  }
}

.centered {
  margin: 75px 0 25px 0;
  position: relative;
  width: 100%;
  top: 0;
}

.accordion__title {
  cursor: pointer;
  margin: 1px 0 0 0;
  position: relative;
  padding: 20px 16px;
  transition: 0.2s;
}

.accordion__icon {
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
}

.accordion__icon .line-01,
.accordion__icon .line-02 {
  position: absolute;
  top: 50%;
  left: -5px;
  width: 16px;
  height: 1.5px;
  background-color: #272343;
  transition: 0.3s;
}

.accordion__icon .line-02 {
  transform: rotate(90deg);
}

.accordion__content {
  display: none;
  padding: 24px 16px 16px;
  background: #CADBE8;
  background: -webkit-linear-gradient(0deg, rgba(202, 219, 232, 1) 0%, rgba(242, 237, 237, 0) 30%);
  background: -moz-linear-gradient(0deg, rgba(202, 219, 232, 1) 0%, rgba(242, 237, 237, 0) 30%);
  background: linear-gradient(0deg, rgba(202, 219, 232, 1) 0%, rgba(242, 237, 237, 0) 30%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#CADBE8", endColorstr="#F2EDED", GradientType=0);
}

.accordion__content a { color: var(--link-color, green); }
.accordion__content a[style*="color"] { color: var(--link-color, green) !important; }

.accordion__content p {
  margin: 0 0 16px;
  line-height: 1.5;
}

.accordion--open .line-02 {
  transform: rotate(0deg);
}

h1 {
  text-align: left;
  padding-top: 10px;
}

h2 {
  margin-left: 15px;
}

a {
  text-decoration: underline;
  color: green;
  cursor: pointer;
}

span.emph {
  font-style: italic;
}

.accordion {
  margin-bottom: -1px;
  border-bottom: 1px solid #111;
  border-top: 1px solid #111;
}

.accordion__title:hover {
  background: #CADBE8;
  background: -webkit-linear-gradient(180deg, rgba(202, 219, 232, 1) 0%, rgba(242, 237, 237, 0) 90%);
  background: -moz-linear-gradient(180deg, rgba(202, 219, 232, 1) 0%, rgba(242, 237, 237, 0) 90%);
  background: linear-gradient(180deg, rgba(202, 219, 232, 1) 0%, rgba(242, 237, 237, 0) 90%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#CADBE8", endColorstr="#F2EDED", GradientType=0);
  color: black;
}

.accordion__title:hover .line-01,
.accordion__title:hover .line-02 {
  background-color: black;
}

.accordion--open .accordion__title {
  background: #CADBE8;
  background: -webkit-linear-gradient(180deg, rgba(202, 219, 232, 1) 0%, rgba(242, 237, 237, 0) 90%);
  background: -moz-linear-gradient(180deg, rgba(202, 219, 232, 1) 0%, rgba(242, 237, 237, 0) 90%);
  background: linear-gradient(180deg, rgba(202, 219, 232, 1) 0%, rgba(242, 237, 237, 0) 90%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#CADBE8", endColorstr="#F2EDED", GradientType=0);
  color: black;
}

.accordion--open .line-01,
.accordion--open .line-02 {
  background-color: black;
}


.time {
  position: absolute;
  right: 13px;
  top: 25px;
  z-index: 999;
}

.title {
  position: relative;
  height: 47px;
  z-index: 999;
  border-bottom: 1px solid #111;
}

.about_img {
  width: 303px;
  top: -20px;
  position: relative;
}

.about_img img {
  display: block;
  width: 100%;
}

#slider {
  width: 100%;
  margin: 0 auto;
  height: 220px;
  white-space: nowrap;
  overflow: hidden;
}
.keen-slider {
  display: flex;
  overflow: hidden;
}
.keen-slider__slide {
  flex: 0 0 auto !important;    /* prevent shrinking, auto width */
  min-width: 165px;
  margin: 0;
  padding: 0;
  display: inline-block;
  vertical-align: top;
  white-space: normal;
  width: auto !important;
}
.keen-slider__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  cursor: pointer;
  opacity: 0;
  transition: opacity .4s ease;
}
#slider .keen-slider__slide img.visible {
  opacity: 1;
}
.slide--narrow {
  width: 165px !important;
}
.slide--square {
  width: 220px !important;
}
.slide--wide {
  width: 330px !important;
}

.lightbox-trigger {
  cursor: pointer;
}


/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.9);
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  z-index: 1000;
}

.lightbox.open { display: flex; }
.lightbox-image {
  max-width: 95vw;
  max-height: 85vh;
  object-fit: contain;
}
.lightbox-caption {
  color: #fff;
  text-align: center;
  max-width: 90ch;
  opacity: .9;
}
.lightbox-close {
  position: absolute;
  top: 12px; right: 16px;
  line-height: 1;
  color: #fff;
  background: transparent;
  border: 0;
  cursor: pointer;
}


@media screen and (max-width: 769px) and (min-width: 10px) {

.about_img {
  width: 150px;
}


}
