@font-face {
    font-family: 'Lora';
    src: url('../fonts/Lora/Lora-Regular.ttf');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Lora';
    src: url('../fonts/Lora/Lora-BoldItalic.ttf');
    font-weight: bold;
    font-style: italic;
}
@font-face {
    font-family: 'Lora';
    src: url('../fonts/Lora/Lora-Bold.ttf');
    font-weight: bold;
    font-style: normal;
}
@font-face {
    font-family: 'Lora';
    src: url('../fonts/Lora/Lora-Italic.ttf');
    font-weight: normal;
    font-style: italic;
}

body {
    margin: 0;
    padding: 10px;
    font-family: 'Lora';
    min-height: 97vh;
    display: flex;
    justify-content: center;
    font-size: 1.1em;
}

header {
    width: 100%;
}

a {
    text-decoration: none;
    transition-duration: 0.2s;
}

.body {
    width: 1000px;
    box-shadow: 0px 5px 10px black;
    display: flex;
    flex-direction: column;
}

.title {
    width: 100%;
    display: flex;
    justify-content: center;
    text-align: center;
}

.title h1 {
    margin: 20px 0 0 0;
}

.title h3 {
    margin: 0;
}

.navigation {
    max-width: 800px;
    margin: 0 auto;
}

.navigation ul {
    list-style-type: none;
    padding-left: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.navigation li {
    margin: 1px;
}

.navigation li a {
    padding: 10px 20px;
    font-size: 1.0em;
    transition-duration: 0.2s;
    display: inline-block;
    border-radius: 5px;
}

.separator {
    width: 90%;
    height: 2px;
    display: block;
    margin: 0 auto;
}

.content {
    margin: 20px;
    flex-grow: 1;
}

.footer {
    padding: 5px 20px;
}

.colophon {
    margin-left: 20px;
}

.colophon p {
    margin: 0;
}

.literary {
    margin: 30px 0;
}

.literary h3 {
    text-align: center;
}

.literary p {
    font-size: 1.2em;
    padding: 0 20px;
    text-indent: 20px;
    margin: 0;
    line-height: 1.5;
}

.footer ul {
    list-style-type: none;
    padding-left: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.footer li {
    margin: 10px;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.gallery > div {
    margin: 20px;
    width: 45%;
}

.gallery video, iframe {
    width: 100%;
    margin: auto;
    height: 250px;
}

.primary-form {
  display: flex;
  flex-direction: column;
  padding: 10px;
}

.primary-form-element {
  display: flex;
  flex-direction: column;
  margin: 10px;
}

.centered-form-element {
  display: flex;
  flex-direction: column;
  margin: 10px;
  align-items: center;
}

.primary-form button {
  font-size: 1.1em;
  background-color: rgb(181, 213, 240);
  border: none;
  padding: 10px;
  border-radius: 10px;
  transition-duration: 0.2s;
  cursor: pointer;
}

.primary-form button:hover {
  background-color: rgb(138, 165, 187);
}

.primary-form textarea {
  font-family: "Arial";
  font-size: 1.1em;
  height: 100px;
}

.texttt {
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.9em;
}

.thought-box {
    border: 2px solid rgb(216, 216, 216);
    background-color: rgb(90, 93, 95);
    padding: 10px;
    box-sizing: border-box;
    border-radius: 10px;
    margin: 0 20px;
}

figure {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
    margin: 40px 0;
}

figure > textarea {
    white-space: nowrap;
}

figure > figcaption {
    font-size: 0.9em;
    margin-top: 10px;
}

table {
    border-collapse: collapse;
    font-size: 0.9em;
}

table > :is(thead, tbody) > tr > :is(th, td) {
  padding: 3px;
  text-align: left;
}

table > thead > tr > :is(th, td) {
  border-top: 2px solid;
  border-bottom: 1px solid;
}

table > tbody > tr:last-child > :is(th, td) {
  border-bottom: 2px solid;
}

table tr:nth-child(even) {
    background-color: rgb(48, 59, 48);
}