body, html {
  margin: 10px;
}

@font-face{
  font-family:'fu-reg';
  src:url("typos/iAWriterMonoS-Regular.ttf");
}

@font-face{
  font-family:'fu-bold';
  src:url("typos/iAWriterMonoS-Bold.ttf");
}

#entries {
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.entry {
  font-family: 'fu-reg';
  font-size: 0.9em;
  line-height: 1.1em;
  min-width: 200px;
  max-width: 200px;
  margin-bottom: 200px;
}

.entry a {
  text-decoration: none;
  color: #AAA;
}

.entry img {
  width: 100%;
  cursor: url("https://img.icons8.com/?size=100&id=11648&format=png&color=000000"), pointer;
}

#image-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.3);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

#image-modal.open {
  display: flex;
}

#image-modal img {
  max-width: 95%;
  max-height: 95%;
  object-fit: contain;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.6);
}

#modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  user-select: none;
}

#modal-caption {
  margin-top: 14px;
  color: #fff;
  font-size: 0.9em;
  text-align: center;
  max-width: 95%;
}
.entry p a[href] {
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.entry p:first-of-type {
  -webkit-margin-before: 0em;
}

.entry p {
  margin-bottom: 1.07em;
}
.entry.image {
  width: 500px;
}

.caption {
  font-size: .7em;
  line-height: 1.1em;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: -1em;
}

strong,b {
  font-weight: normal;
  font-family: 'fu-bold';
}

#uc-logo {
  margin-top: 10px;
  width: 30%;
}

#dot-dot-dot:after {
  overflow: hidden;
  display: inline-block;
  vertical-align: bottom;
  -webkit-animation: ellipsis steps(4,end) 900ms infinite;
  animation: ellipsis steps(4,end) 900ms infinite;
  content: "\2026"; /* ascii code for the ellipsis character */
  width: 0px;
}

.reactions {
  display: flex;
  gap: 8px;
  margin: 16px 0;
}
.react-btn {
  background: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 2px 8px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.15s;
  display: flex;
  align-items: center;
  gap: 4px;
  color: fu-reg;
  font-family: 'fu-reg';
}
.react-btn:hover {
  border-color: #999;
  background: rgba(0,0,0,0.05);
  transform: scale(1.05);
}
.react-btn.voted {
  background: #f0f0f0;
  border-color: #888;
  font-weight: bold;
}
.count { font-size: 12px; display: none; }
.count:not(:empty) { display: inline; }

@keyframes ellipsis {
  to {
    width: 22px;
  }
}

@-webkit-keyframes ellipsis {
  to {
    width: 22px;
  }
}
