@charset "UTF-8";
* {
  padding: 0;
  margin: 0;
  list-style: none;
}

:root {
  font-family: ff-scala, serif;
  font-size: 16px;
}

body {
  line-height: 1.4rem;
  -webkit-font-smoothing: antialiased;
  background-color: rgb(245, 245, 245);
  height: 100%;
}
@media screen and (max-width: 592px) {
  body {
    background-color: rgb(250, 250, 250);
  }
}

a {
  color: #6E6741;
  text-decoration: none;
}
a:hover {
  color: #990000;
}

hr {
  border: none;
  border-bottom: 1px dashed #6E6741;
  margin-bottom: 1rem;
}

.textarea {
  width: 675px;
  margin: 0 auto;
  padding: 2rem 1rem;
  display: grid;
  grid-template-columns: 5.2rem 1fr;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
  background-color: rgb(250, 250, 250);
}
@media screen and (max-width: 712px) {
  .textarea {
    width: 560px;
    display: block;
  }
}
@media screen and (max-width: 592px) {
  .textarea {
    display: block;
    width: calc(100% - 2rem);
  }
}

.title {
  font-family: ff-scala-sans-pro, sans-serif;
  font-size: 1.2rem;
  height: 5rem;
  grid-column: 2;
}
@media screen and (max-width: 712px) {
  .title {
    height: auto;
    padding-bottom: 0.5rem;
  }
}

.sidebar {
  font-size: 1rem;
  font-family: ff-scala-sans-pro, sans-serif;
}
@media screen and (max-width: 712px) {
  .sidebar {
    height: auto;
    padding-bottom: 2rem;
  }
  .sidebar li {
    display: inline-block;
  }
  .sidebar li:not(:last-child)::after {
    content: " · ";
    color: #6E6741;
  }
}

.content {
  min-height: calc(100vh - 2rem - 2rem - 5rem - 5rem);
}
@media screen and (max-width: 712px) {
  .content {
    min-height: calc(100vh - 2rem - 2rem - 275px);
  }
}
.content img {
  width: 100%;
  padding-bottom: 1rem;
}
.content h1 {
  font-size: 1.4rem;
  font-weight: normal;
  margin-bottom: 1rem;
}
.content p {
  font-size: 1rem;
  margin-bottom: 1rem;
}
.content .smcp {
  text-transform: lowercase;
  font-feature-settings: "smcp";
}

footer {
  height: 5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  grid-column: 2;
}
footer div {
  font-size: 0.85rem;
  font-family: ff-scala-sans-pro, sans-serif;
}/*# sourceMappingURL=style.css.map */