.toots {
  max-width: 100%;
  list-style: none;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, avenir next, avenir, segoe ui, helvetica neue, helvetica, Cantarell, Ubuntu, roboto, noto, arial, sans-serif;
  color: #f5f5f5;
  background-color: #3A3B3C;
}

.toot {
  border-bottom: 1px solid #ccc;
  padding: 1rem;
}

/* Posting user. */
.toot .user {
  display: flex;
  flex-flow: column wrap;
  justify-content: space-evenly;
  align-content: flex-start;
  height: 46px;  /* Avatar height. */
  column-gap: 0.5rem;

  text-decoration: none;
  color: inherit;
}

.toot .avatar {
  border-radius: 4px;
}

.toot .display-name {
  font-weight: bold;
  display: block;
}

.toot .user:hover .display-name {
  text-decoration: underline;
}

.toot .username {
  display: block;
  margin-right: 1em;
  color: #999;
}

/* Boosting user is smaller and above the posting user. */
.toot .boost {
  height: 23px;
  margin-bottom: 0.25rem;
  column-gap: 0.25rem;
}

.toot .boost:before {
  content: "♺";
  font-size: 140%;
}

.toot .boost .username {
  display: none;
}

.toot .permalink {
  text-decoration: none;
  display: block;
  color: #999;
  float: right;
}

.toot .permalink:hover {
  text-decoration: underline;
}

.toot .body {
  clear: both;
  margin-top: 1em;
}

.toot .body a {
  overflow-wrap: anywhere;
}

/* Weird trick to keep the text in the page but not display it. */
.toot .body .invisible {
  display: inline-block;
  font-size: 0;
  line-height: 0;
  width: 0;
  height: 0;
  position: absolute;
}

.toot .body .ellipsis::after {
  content: "…";
}

.toot .attachment {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 4px;
}

.toot .attachment img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.highlight-green {
    background-color: #1cd31c; /* light green */
    padding: 0.5em;
    border-radius: 4px;
    color: #000000;
}

.highlight-yellow {
    background-color: #FFFF00; /* light green */
    padding: 0.5em;
    border-radius: 4px;
    color: #000000;
}
.content-box {
    max-width: 800px;
    background: rgba(0, 0, 0, 0.85); /* black, slightly transparent */
    color: white;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem auto;
}
body .content-box {
    background: rgba(0, 0, 0, 0.85) !important;
}

h1 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    margin-top: 0;
    margin-bottom: 1.2rem !important;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Section heading */
h2 {
    font-size: 1.6rem;
    font-weight: 600;
    color: #e0ff80;
    margin-top: 2rem;
    margin-bottom: 0.8rem !important;
}

/* Subheading */
h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #9fdcff;
    margin-top: 1.6rem;
    margin-bottom: 0.6rem !important;
}

/* Smaller section heading */
h4 {
    font-size: 1.15rem;
    font-weight: 600;
    color: #ffb86c;
    margin-top: 1.4rem;
    margin-bottom: 0.5rem !important;
}

/* Lists */
ul {
   
    padding-left: 1.5rem !important;

}

ul li {
    margin-bottom: 0.4rem;
    color: #ddd;
    line-height: 1.4em;
    list-style-type: square;
}