body {
  background: #12091f;
  color: #e6dcff;
  font-family: serif;
  max-width: 700px;
  margin: auto;
  padding: 2rem;
}

button {
  background: none;
  border: 1px solid #b89cff;
  color: #b89cff;
  margin: 0.2rem;
  padding: 0.3rem 0.6rem;
  cursor: pointer;
  max-width: 42rem;
}

#list div {
  cursor: pointer;
  margin: 0.4rem 0;
  opacity: 0.8;
}

#list div:hover {
  opacity: 1;
}

.post-image {
  max-width: 100%;
  height:auto;
  display: block;
  margin: 1rem auto;
  border-radius: 6px;
  opacity: 0.9;
}

#tags {
  position: relative;
  width: 100%;
  height: 300px;
  display: none;
  margin-bottom: 2rem;
  border: 1px dashed rgba(184,156,255,0.2);
  border-radius: 12px;
  overflow: hidden;
}
.tag {
  position: absolute;
  font-size: 0.8rem;
  opacity: 0.75;
  cursor: pointer;
  white-space: nowrap;
  color: #b89cff;
  transition: transform 0.3s, opacity 0.3s;
}
.tag:hover {
  opacity: 1;
  transform: scale(1.1);
}

#tags.active {
  display: block;
}

body.lectura #list,
body.lectura #tags {
  display: none;
}

body.lectura article {
  font-size: 1.2rem;
}


#activeFilter {
  margin: 0.8rem 0;
  font-size: 0.85rem;
  color: #b89cff;
  opacity: 0.8;
  cursor: pointer;
}

#activeFilter:hover {
  opacity: 1;
}

#activeFilter::before {
  content: "✦ ";
}

@media (max-width: 600px) {
  #tags {
    height: 160px;
  }

  .tag {
    font-size: 0.7rem;
  }

  body {
    background: #12091f;
    color: #e6dcff;
    font-family: serif;
    padding: 1rem;
    

  }

  article {
    font-size: 1rem;
    line-height: 1.6;
  }
}