:root {
  --back-color: #F2F2F2;
  --link-color: #FF7F11;
  --font-title-color: #659e63;
  --font-subtitle-color: #8A5F41;
}

body {
  color: black;
  background-color: var(--back-color);
  font-family: monospace;
  font-size: 1rem;
  line-height: 1.3rem;
}

a {
  color: var(--link-color);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
  color: var(--font-subtitle-color);
}

.wrapper {
  width: 100vw;
  max-width: 660px;
  margin: 0rem auto;
}

h1 {
  line-height: 2rem;
  color: var(--font-title-color);
  font-size: 1.75rem;
}

h2 {
  line-height: 2rem;
  margin-top: 3em;
  font-size: 1.5rem;
}

h3 {
  font-size: 1.375rem;
}

h4 {
  font-size: 1.125rem;
  color: var(--font-subtitle-color);
  margin-left: 0.625rem;
}

strong {
  color: var(--font-title-color);
}

span.strong {
  color: var(--font-subtitle-color);
  font-weight: bold;
}

em {
  color: var(--font-title-color);
}

hr {
  text-align: center;
  border: 0;
}
hr:before {
  content: "/////";
}
hr:after {
  content: attr(data-content) "/////";
}
hr {
  margin-top: 2em;
  margin-bottom: 2em;
}

blockquote {
  border: thin solid black;
}

iframe {
  width: 98vw;
  height: 95vh;
  max-width: 660px;
  background-color: var(--back-color);
  border: thin solid black;
}

main {
  position: relative;
}

.scroll-top {
  position: absolute;
  top: 110vh;
  bottom: -10rem;
  right: 1rem;
}

.scroll-top__link {
  position: -webkit-sticky;
  position: sticky;
  top: 90vh;
  text-decoration: none;
  border-radius: 0.25rem;
  background-color: var(--font-subtitle-color);
  padding: 1rem;
  color: white;
  font-weight: 700;
  opacity: 0.3;
}

.scroll-top__link:hover {
  opacity: initial;
}

table {
  border-collapse: collapse;
  width: 100%;
}

th {
  border: thin solid black;
  background-color: rgba(101, 158, 99, 0.4078431373);
}

td {
  border: thin solid black;
  text-align: left;
  padding: 0.5rem;
}

tr:nth-child(even) {
  background-color: rgba(101, 158, 99, 0.1215686275);
}

p.talks_paragraph {
  padding-left: 1em;
}

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