h1,
h2,
h3,
h4,
h5 {
  color: var(--subtext);
  font-family: "Verdana", sans-serif;
}

b,
strong {
  color: var(--mute);
}

a {
  color: var(--mauve);
}

html {
  background: var(--base);
  color: var(--text);
  font-family: "Georgia", serif;
  font-size: 1.1em;
  display: flex;
  flex-direction: row;
  justify-content: center;
}

body {
  color: var(--text);
  width: min(800px, 95%);
  margin-top: 3em;
  padding: 15px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

.site-title {
  color: var(--mauve);
  font-size: 2em;
  margin-bottom: 5px;
  /* text-align: center; */
}

nav {
  color: var(--text);
  display: flex;
  flex-direction: row;
  justify-content: left;
  font-size: 1.2em;
  margin-bottom: 20px;
}

nav>a {
  color: var(--subtext);
  text-decoration: none;
}

nav>a:hover {
  color: var(--mauve);
}

nav>a.active {
  color: var(--mauve);
}

.block {
  border: 1px dotted var(--subtext);
  padding: 5px 15px;
  margin: 0 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.block h1 {
  font-size: 1em;
  text-align: center;
  margin-bottom: 0;
}

.small {
  font-size: 0.8em;
}

footer {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

footer hr {
  width: 100%;
}

.log-entry {
  color: var(--text);
  margin-top: 1.2em;
  text-decoration: none;
  display: flex;
  flex-direction: row;
  align-items: baseline;
  border-bottom: 2px dotted var(--surface);
}

.log-entry:hover {
  color: var(--mauve);
}

.log-title {
  font-size: 1rem;
  margin-left: 0.5rem;
  margin-right: auto;
}

.log-date {
  color: var(--subtext);
  font-size: 0.9rem;
  margin-left: auto;
  margin-right: 0.5rem;
}

table {
  border-collapse: collapse;
}

td,
th {
  border: 1px solid var(--subtext);
  padding: 8px;
}