@font-face {
  font-family: "Plainsound Text";
  src: url(/fonts/PlainsoundText-Regular.otf);
  font-style: normal;
  font-weight: normal;
}
@font-face {
  font-family: "Plainsound Text";
  src: url(/fonts/PlainsoundText-Italic.otf);
  font-style: italic;
  font-weight: normal;
}
* {
  padding: 0;
  margin: 0;
  list-style: none;
}

:root {
  font-family: "Plainsound Text", sans-serif;
  font-feature-settings: "onum";
  font-size: 17px;
}

body {
  line-height: 1.4rem;
  background-color: rgb(245, 245, 245);
  background-color: rgb(250, 250, 250);
  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;
}

audio {
  display: block;
  padding: 0.5rem 0 0.25rem;
}

.textarea {
  width: 675px;
  margin: 0 auto;
  padding: 2rem 1rem;
  display: grid;
  grid-template-columns: 5.2rem 1fr;
  -moz-column-gap: 1.5rem;
       column-gap: 1.5rem;
  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-size: 1.2rem;
  height: 5rem;
  grid-column: 2;
}
@media screen and (max-width: 712px) {
  .title {
    height: auto;
    padding-bottom: 0.5rem;
  }
}
.title a {
  color: black;
}
.title a:hover {
  color: #990000;
}

.sidebar {
  font-size: 1rem;
}
@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: uppercase;
}

footer {
  height: 5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  grid-column: 2;
}
footer div {
  font-size: 0.9rem;
}/*# sourceMappingURL=style.css.map */