body {
  background: #ffe4e8;
  max-width: 600px;
  margin: 30px auto;
  padding: 0 12px;
}

a {
  color: #0000cc;
}

hr {
  margin: 14px 0;
}

/* index, about */
body.flex-page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  box-sizing: border-box;
  margin: 0 auto;
  padding: 20px 12px;
}

#content {
  flex: 1;
}

#footer {
  text-align: center;
  font-size: 14px;
  margin-top: auto;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 100vw;
}

.bottom-right {
  position: fixed;
  bottom: 20px;
  right: 15px;
  font-size: 14px;
}

.feed-card {
  border: 1px solid #000;
  padding: 12px;
  margin-bottom: 16px;
  background: #fff8fa;
}

.feed-card-meta {
  /* font-size: 13px; */
  margin-bottom: 8px;
}

.like-btn {
  background: none;
  border: 1px solid #000;
  cursor: pointer;
  padding: 3px 10px;
  font-family: inherit;
  font-size: 14px;
}

.like-btn.liked {
  background: #ffb3c1;
}

@media (max-width: 1024px) {
  .bottom-right {
    position: static;
    transform: none;
    text-align: center;
    display: block;
    margin-top: 12px;
  }

  #footer {
    white-space: normal;
    padding: 0 10px;
  }
}
