@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600&family=Vollkorn:ital@0;1&display=swap");
nav {
  text-align: center;
  width: 100%;
  margin-bottom: 1em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-content: center;
}
nav .logo img {
  height: 5em;
}
nav .links {
  display: flex;
  margin-right: 1em;
}
nav .links a {
  margin-left: 1em;
}
@media screen and (max-width: 500px) {
  nav {
    flex-direction: column;
  }
  nav .logo {
    margin-bottom: 1em;
  }
  nav .links {
    flex-direction: column;
    margin-right: 0;
  }
  nav .links a {
    margin: 0;
  }
}

body {
  background: #fff;
  color: #333;
  font-family: "Vollkorn", serif;
  display: flex;
  flex-direction: column;
  margin: 0;
  font-size: 1.5rem;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Playfair Display", serif;
}

a {
  color: #333;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

.title {
  font-family: "Playfair Display", serif;
}

.content .hero {
  display: flex;
  width: 100%;
}
.content img {
  width: 100%;
}

.story-wrapper {
  padding: 0.8em;
  text-rendering: optimizeLegibility;
  width: 40em;
}
.story-wrapper .story, .story-wrapper .info {
  line-height: 1.6;
}
.story-wrapper .story p, .story-wrapper .info p {
  margin-bottom: 1.5em;
}
@media screen and (max-width: 1024px) {
  .story-wrapper {
    width: 90%;
    box-sizing: border-box;
  }
}

.hero {
  margin-bottom: 2em;
}
.hero .hero-image {
  width: 50%;
  height: 100%;
}
.hero .hero-image img {
  object-fit: contain;
  object-position: 50% 75%;
  height: calc(100vh - 5em);
}
@media screen and (max-width: 800px) {
  .hero .hero-image img {
    object-fit: scale-down;
  }
}
.hero .hero-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-content: center;
  text-align: center;
  width: 50%;
  padding: 1em;
  box-sizing: border-box;
}
@media screen and (max-width: 800px) {
  .hero {
    flex-direction: column;
  }
  .hero .hero-image, .hero .hero-title {
    width: 100%;
  }
  .hero .hero-title {
    order: 2;
  }
}

.story-wrapper {
  margin: auto;
}
.story-wrapper .story, .story-wrapper .info {
  margin: 3em auto;
}

/*# sourceMappingURL=post-center.css.map */