body
{
  background: #f8f8f8;
}

.mainbody
{
  max-width: 900px;
}

h1
{
  font-size: 2.5em;
  margin-top: 0.5em;
  font-weight: 600px;
  color: #444;
}

h2
{
  font-weight: 400;
  font-size: 1.2em;
  color: #fff;
  background: #666;
  margin-top: 1em;
  border-radius: 5px;
  padding: 3px;
  margin-top: 1.5em;
}

p
{
  margin-bottom: 6px;
}

span.hnum
{
  display: inline-block;
  width: 25px;
  border-radius: 50%;
  font-weight: 600;
  font-size: 0.8em;
  color: #333;
  background: white;
  padding: 1px;
  text-align: center;
  margin-left: 3px;
  margin-right: 9px;
  margin-top: 2px;
  margin-bottom: 2px;
}

p.intro
{
  font-style: italic;
}

p.datetime
{
  color: #666;
  font-weight: 600px;
  font-size: 0.9em;
  margin-bottom: 6px;
}

div.footer
{
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  margin-top: 1em;
  margin-bottom: 3em;
}

div.footer img
{
  height: 40px;
}

#map
{
  display: block;
  cursor: pointer;
  margin-left: auto;
  margin-right: auto;
  margin-top: 1em;
  width: 600px;
  max-width: 90%;
  box-shadow:  2px 2px 10px #b1b1b1;
}

#map:hover
{
  box-shadow:  6px 6px 17px #b1b1b1;
}

img.thumb
{
  height: 80px;
  cursor: pointer;
  padding: 3px;
  border: 2px solid #ccc;
  border-radius: 4px;
  filter: grayscale(75%);
  margin: 2px

}

img.thumb:hover
{
  border: 2px solid #666;
}

.overlay
{
  display: none;
  position: fixed;
  top:0px;
  background: #000;
  width: 100%;
  height: 100%;
  z-index: 10;
}

.flexbox
{
  display:flex;
  justify-content: center;
  align-items: center; 
  width: 100%;
  height: 100%;
  background: #222;
}

.overlay .flexbox img
{
  max-width: 90%;
  max-height: 90%;
  height: auto;
  width: auto;
  border:3px solid #aaa;
  cursor: pointer;
}

.overlayinfo
{
  position: absolute;
  color: #ccc;
  background: #333;
  border-radius: 5px;
  border: 1px solid #666;
}

.closepic
{
  top: 0%;
  right: 0%;
  font-size: 1.1em;
  padding-left: 12px;
  padding-right: 12px;
  padding-top: 3px;
  padding-bottom: 3px;
  margin: 6px;
  cursor: pointer;
}

.closepic:hover
{
  background-color: #666;
}


.titlepic
{
  top: 0%;
  left: 0%;
  font-size: 1.1em;
  padding: 3px;
  margin: 6px;
  max-width: calc(100% - 3em);
}

.navpic
{
  top: 50%;
  margin-top: -20px;
  margin-left: 5px;
  margin-right: 5px;

  cursor: pointer;
  font-weight: bold;
  font-size: 30px;
  padding: 10px;
  
}

.navpic:hover
{
  background-color: #666;
}

.nextpic
{
  right: 0px;
}

.prevpic
{
left: 0px;
}

/* EYES */
.loader-eyes {
  display: inline-flex;
  gap: 10px;
}
.loader-eyes:before,
.loader-eyes:after {
  content: "";
  height: 20px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid #aaa;
  background:
    radial-gradient(farthest-side,#000 95%,#0000) 35% 35%/6px 6px no-repeat
    #fff;
  transform: scaleX(var(--s,1)) rotate(0deg);
  animation: l6 2s infinite linear;
}
.loader-eyes:after {
  --s: -1;
  animation-delay:0.5s;
}
@keyframes l6 {
  100% {transform:scaleX(var(--s,1)) rotate(360deg);}
}


/* https://css-loaders.com/shuriken/ */
.loader-flower {
  position: fixed;
  left: calc(50% - 40px);
  top: calc(50% - 40px);
  z-index: 20;
  display: none;

  width: 80px;
  aspect-ratio: 1;
  --c: #8d7958 91%,#0000;
  background:
    radial-gradient(30% 50% at -3px             55%, var(--c)) top    right,
    radial-gradient(30% 50% at -3px             45%, var(--c)) bottom right,
    radial-gradient(30% 50% at calc(100% + 3px) 55%, var(--c)) top    left,
    radial-gradient(30% 50% at calc(100% + 3px) 45%, var(--c)) bottom left,
    radial-gradient(50% 30% at 45% calc(100% + 3px), var(--c)) top    right,
    radial-gradient(50% 30% at 45% -3px            , var(--c)) bottom right,
    radial-gradient(50% 30% at 55% calc(100% + 3px), var(--c)) top    left,
    radial-gradient(50% 30% at 55% -3px            , var(--c)) bottom left;
  background-size: 50.1% 50.1%;
  background-repeat: no-repeat;
  -webkit-mask: radial-gradient(circle 5px,#0000 90%,#000);
  animation: l8 1.5s infinite linear;
}
@keyframes l8 { 
  100%{transform: rotate(1turn)}
}