@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;
}

body {
  flex-direction: column;
}
body .category-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
body .category-container .cover-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
body .category-container .cover-container .cover {
  width: 24%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 0 0.25vw;
}
body .category-container .cover-container .cover .cover-image {
  box-sizing: border-box;
  position: relative;
}
body .category-container .cover-container .cover .cover-image:before {
  display: block;
  content: "";
  width: 100%;
  padding-top: 129.4117647059%;
}
body .category-container .cover-container .cover .cover-image .inner {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
body .category-container .cover-container .cover .cover-image .inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 0%;
}
@media screen and (max-width: 800px) {
  body .category-container .cover-container .cover {
    width: 48%;
    margin: 1%;
  }
}
@media screen and (max-width: 500px) {
  body .category-container .cover-container .cover {
    width: 100%;
    margin-bottom: 1em;
  }
}

/*# sourceMappingURL=directory.css.map */