body {
  font-family: sans-serif;
  text-align: center;
  background: #102226;
  color: #F2C777;
  font-size: 1rem;
}
h1 {
    font-family: sans-serif;
    color: #48BED9;
/*    font-weight: normal;*/
/*    letter-spacing: 0.01em;*/
}
.container {
  width: 80vw;
  margin: auto;
  padding: 1rem;
}
img {
  border-radius: 10px;
  margin-top: 1rem;
  max-width: 100%;
  max-height: 55vh;
  pointer-events: none; /*non-reactive to mouse events, so eg no right click to save image option, no dragging, etc*/
}
.card {
  margin: 1rem;
  padding: 1rem;
  background: #18333a;
  border-radius: 10px;
}
.author {
  font-style: italic;
  font-size: small;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
.caption {
  color: #33A691;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
.imageAuthor {
  font-style: italic;
  font-size: small;
  color: #33A691;
  margin-top: 0.5rem;
}
button:last-of-type {
  margin-bottom: 1rem;
}
blockquote {
  font-size: 1.2rem;
  margin: 1rem 0;
}
a:link {
  color: #48BED9;
  text-decoration: underline;
}
a:visited,
a:hover,
a:active {
  color: #F2C777;
  text-decoration: underline;
}
#backToTop {
  position: fixed;
  bottom: 15px;
  right: 15px;
  z-index: 1000;
  font-size: 1rem;
  border: none;
  padding: 10px 15px;
  border-radius: 5px;
  opacity: 0.6;
  transition: opacity 0.3s;
}
#backToTop:hover {
  opacity: 1;
}
.footer-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #18333a;
    text-align: center;
    font-size: xx-small;
    margin: 0;
    padding: 0.5em 0;
}