html {
  height: 100%;
  margin: 0;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  width: 100%;
  margin: 0;
}
body .main {
  flex-grow: 1;
}
body .header, body .main, body .footer {
  padding: 0 6px;
}
body .header .contents, body .main .contents, body .footer .contents {
  width: 100%;
  max-width: 40em;
  margin: 0 auto;
}

.header > .contents {
  display: flex;
  justify-content: space-between;
}
.header > .contents #navbar-toggle {
  height: 4.8em;
  align-content: center;
}
@media (width > 575px) {
  .header > .contents #navbar-toggle {
    display: none;
  }
}
.header > .contents #navbar-toggle .material-symbols-outlined {
  display: block;
  font-size: 2em;
}
.header > .contents .logo-container {
  height: 4.8em;
  align-content: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.header > .contents .logo-container img.logo {
  max-height: 1.6em;
}
.header > .contents nav {
  flex-grow: 1;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  padding: 1.6em 0;
}
.header > .contents nav a,
.header > .contents nav div.empty-spacer {
  display: none;
}
.header > .contents nav a.is-essential {
  display: inline-block;
}
@media (width > 575px) {
  .header > .contents nav {
    justify-content: space-between;
  }
  .header > .contents nav a,
  .header > .contents nav div.empty-spacer {
    display: inline-block;
  }
}
@media (width <= 575px) {
  .header > .contents nav.is-active {
    display: block;
    flex-grow: 0;
  }
  .header > .contents nav.is-active a {
    display: block;
  }
}

.footer > .contents > ul.footer-items {
  display: flex;
  justify-content: space-around;
  list-style: none;
  padding: 0;
}

.footer > .contents > ul.footer-items > li a#feeds-toggle,
.footer > .contents > ul.footer-items > li #feeds-links a {
  display: flex;
  align-items: center;
}
.footer > .contents > ul.footer-items > li a#feeds-toggle span.material-symbols-outlined,
.footer > .contents > ul.footer-items > li #feeds-links a span.material-symbols-outlined {
  font-size: 1.6em;
}

#feeds-links ul {
  margin: auto;
}

body {
  font-family: "Figtree", "Open Sans", sans-serif;
  font-weight: 300;
  font-size: 18px;
  line-height: 1.6em;
  color: #3a3a3a;
}

h1,
h2 {
  text-align: center;
  font-weight: 300;
  color: #3a3a3a;
}

h3,
h4,
h5 {
  font-weight: 400;
  color: #3a3a3a;
}

a {
  color: #b0b0b0;
  text-decoration: none;
}

a:hover {
  color: rgb(76, 76, 76);
}

.header {
  border-bottom: 1px solid lightgrey;
}

.footer {
  border-top: 1px solid lightgrey;
}

blockquote {
  border-left: 2px solid #3a3a3a;
  padding-left: 1em;
  margin-inline-start: 0;
}

.current {
  color: black;
}

.gauge {
  color: lightgrey;
}

.gauge.warn {
  color: burlywood;
}

.gauge.warn.urgent {
  color: darksalmon;
}

ul {
  list-style: none;
  padding: 0;
}

.under-construction span {
  vertical-align: top;
}
.under-construction .material-symbols-outlined {
  vertical-align: sub;
}

ul.table-of-contents {
  padding: 0;
  text-align: center;
}
ul.table-of-contents li {
  display: inline;
}
ul.table-of-contents li + li::before {
  content: " | ";
}

.logs li .title,
.projects li .title {
  margin-bottom: 0;
}
.logs li .subtitle,
.projects li .subtitle {
  margin: 0;
}

#navbar-toggle {
  user-select: none;
  touch-action: none;
}

.image-container {
  display: flex;
  justify-content: center;
  margin: 1em 0;
}
.image-container img {
  min-width: 10em;
}

.image-container.medium img {
  max-width: 20em;
  min-width: 10em;
}

p.blurb {
  max-width: 20em;
  margin: 1.6em auto;
}

#feeds-toggle,
#feeds-links {
  user-select: none;
}

#feeds-links ul {
  list-style: none;
  padding: 0;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
}

.modal-content {
  background-color: #fefefe;
  padding: 1.6em;
  border-top: 1px solid #888;
  border-bottom: 1px solid #888;
  display: flex;
}

.modal.is-active {
  display: block;
  align-content: center;
}

img.hello {
  display: block;
  margin: auto;
  max-width: 15em;
}

.section-break {
  display: block;
  border-bottom: 1px solid #888;
  max-width: 12em;
  margin: 1.6em auto;
}

input[type=text],
input[type=email],
input[type=password],
button[type=submit],
textarea {
  width: 100%;
  padding: 10px 15px;
  margin-bottom: 1em;
  border: 1px solid lightgrey;
  border-radius: 4px;
  font-family: "Figtree", "Open Sans", sans-serif;
  font-size: 1em;
  box-sizing: border-box;
}

textarea {
  min-height: 15em;
}

button[type=submit] {
  background-color: whitesmoke;
}

button[type=submit]:hover {
  background-color: rgb(238, 238, 238);
}

input[type=text]:focus,
input[type=email]:focus,
input[type=password]:focus,
button[type=submit]:focus-visible,
textarea:focus {
  outline: none;
  border-color: lightgrey;
  box-shadow: 0 0 0 1px rgb(76, 76, 76);
}

input:disabled {
  cursor: not-allowed;
}

#comment-section {
  border-top: solid 1px lightgrey;
  padding-top: 1em;
}

#comment-form > textarea {
  margin-bottom: 0;
}

#comment-form > span.commenter-text-quota {
  display: block;
  font-size: 0.6em;
  float: right;
}

#comment-form > button[type=submit] {
  margin: 1em 0;
}

#comments > li span.author {
  display: inline-block;
  font-weight: 600;
  margin-right: 1em;
}
#comments > li span.created-at {
  display: inline-block;
  font-size: 0.6em;
}
#comments > li p {
  margin-top: 0;
}

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