html {
  font-family: "PT Serif", serif;
}

body {
  background-color: #f2f2f0;
  color: #404040;
  font-size: 1rem;
  line-height: 1.5;
}
.page {
  padding-top: 70px;
}

/* Header Style */

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  z-index: 9999;
  padding: 10px 20px;
  display: block;
  background-color: #f2f2f0;
  box-shadow: 0px 2px 10px rgb(203, 234, 252);
}
header .wrapper {
  position: relative;
}
h1 {
  /* font-family: 'DM Serif Text', serif; */
  font-size: 20pt;
  color: #7c7c7c;
  padding-top: 0;
  letter-spacing: 2px;
}
.header-menu {
}

/* Site Content Style */

.site-content {
  display: block;
}
.site-content::before {
  content: "";
  display: table;
  table-layout: fixed;
}
.wrap-container {
  padding: 15px;
  display: flex;
  flex-flow: row wrap;
}
.wrap-container > * {
  flex: 1 100%;
}

.wrapper {
  max-width: 1800px;
  margin: 0 auto;
  padding: 0 17px;
}
/* Thumbnail Image Style */
.image-open {
  position: relative;
}
.mainimage {
  object-fit: cover;
  width: 63.6vw;
  height: 70vh;
}
img {
  object-fit: cover;
}
.mainimage-caption {
  display: inline;
  writing-mode: vertical-lr;
  position: absolute;
  right: -20px;
  font-size: 9pt;
  z-index: 9998;
}
.thumbnail {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.thumbnail img {
  max-width: 100%;
  max-height: 400px;
  align-self: center;
  object-fit: cover;
}

/* Menu Style */
.menu {
  text-align: right;
  padding: 5px;
  line-height: 1.3em;
}
.menu-link li a {
  font-family: "Satisfy", cursive;
  font-size: 10pt;
  letter-spacing: 3px;
  color: #404040;
  padding: 2px;
  text-decoration: none;
}
.menu-link li:hover {
  color: rgb(203, 234, 252);
  background-color: #5193c9;
}
.menu-link li a:hover {
  color: rgb(203, 234, 252);
  background-color: #5193c9;
}

/* Contact style */
.contact {
  text-align: center;
  width: 100%;
}
.contact-info {
  text-align: center;
  width: 100%;
}
.contact-info a {
  text-decoration: none;
  color: #404040;
}
.contact-info a:hover {
  color: #5193c9;
}
/* column size */
.clearfix::after {
  content: "";
  display: block;
  clear: both;
}
.row {
  max-width: 1500px;
}
.flex-1 {
  flex: 1;
  margin: 5px;
}
.flex-2 {
  flex: 2;
  margin: 5px;
}
footer {
  width: 100vw;
  position: absolute;
  bottom: 0px;
  padding: 10px;
  text-align: center;
  font-size: 8pt;
}
