body {
  background: #f1c39a;
  color: #483737;
  font-family: 'Dekko', cursive;
  font-size: 16px;
  max-width: 1066px;
  margin: 0 auto;
}

#content {
  padding: 8px;
}

.text-bigger {
  font-size: 32px;
}

.icon-container {
  padding: 8px;
  padding-right: 16px;
}

.icon {
  width: 100px;
  height: 100px;
}

.icon-smiling {
  position: absolute;
  opacity: 0;
}

.icon-smiling:hover {
  opacity: 1;
}

.letterhead {
  display: flex;
  align-items: center;
}

hr {
  border: 3px solid #483737;
  border-radius: 2px;
}

/* https://stackoverflow.com/questions/2812770/add-centered-text-to-the-middle-of-a-horizontal-rule */
.separator {
  display: flex;
  align-items: center;
  text-align: center;
  font-size: 32px;
}

.separator::before,
.separator::after {
  content: '';
  flex: 1;
  /* border-bottom: 1px solid #000; */
  border: 3px solid #483737;
}

.separator:not(:empty)::before {
  margin-right: .25em;
}

.separator:not(:empty)::after {
  margin-left: .25em;
}

footer {
  text-align: center;
}

.section-contents {
  display: flex;
  flex-direction: column;
}

@media (min-width: 700px) {
  .section-contents {
    flex-wrap: wrap;
    flex-direction: row;
  }
}

.section-entry {
  max-width: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px;
}

.section-name {
  font-size: 24px;
  color: #f4d7d7;
  background-color: #483737;
  text-align: center;
  border-radius: 5px;
  display: inline-block;
  margin-bottom: 8px;
  padding-left: 8px;
  padding-right: 8px;
}

.section-thumbnail > img {
  width: 300px;
  height: 200px;
  object-fit: cover;
}

.external-row {
  display: flex;
  flex-direction: row;
  padding-top: 16px;
  align-items: baseline;
}

.external-element {
  margin-right: 16px;
}

.img-pixel {
  image-rendering: pixelated;
}

/* https://stackoverflow.com/questions/35230210/how-to-ignore-rule-for-a-href-using-css */
a {
  color: #483737;
}

/* a:link { */
/*     text-decoration: none; */
/* } */
/* a:visited { */
/*     text-decoration: none; */
/* } */
/* a:hover { */
/*     text-decoration: underline; */
/* } */
/* a:active { */
/*   text-decoration: underline; */
/* } */
