body {
  font-family: monospace;
  margin: 0;
  padding: 0;
}
div{
  margin: 0;
  padding: 0;
}
.post {
  margin: 5px;
  padding: 10px;
  background-color: rgb(0, 0, 0, .1);
  color:#fff59a;
  font-family: monospace;
  border: dotted 1px;
  border-color: #aa1818;
  min-height: 105px;
}
.title {
  margin: 0;
  filter: drop-shadow(15, 15, 15, blue);
  line-height: 0.9;
  color: inherit;
}
.subtitle {
  margin: 0;
  font-size: medium;
  text-align: right;
}
.body {
  margin: 0;
  color: white;
}

.post-image {
  display: block;
  float: left;
  margin-right: 15px;
  border: 1px double;
  border-color: inherit;
}
ul {
  margin-top: 1000px;
  padding: 0;
  display: inline;
  list-style: none;
  color: inherit;
}
ul::before {
  content: "today, we r talking about";
  color: white;
}
ul li {
  display: inline;
  font-weight: bold;
  font-style: italic;
  color: white;
}
ul li:before {
  display: inline;
  content: " ";
  text-decoration:none;
}
ul li:after {
  display: inline;
  content: ",";
  text-decoration:none;
}
ul li:last-child:before {
  content: " and ";
  text-decoration:none;
  font-style: unset;
}
ul li:last-child:after {
  content: ".";
  text-decoration:none;
}
.post:hover{
  cursor: pointer;
  background-color: rgb(0, 0, 0, .3);
  color:white;
  border-color: white;
}

button {
  display: block;
  margin: 5px;
  margin-left: auto;
  padding: 5px;
  border-color: #aa1818;
  border-style: dotted;
  border-width: 1px;
  color:#fff59a;
  font-family: monospace;
  background-color: rgb(0, 0, 0, .1);
}
button:hover {
  cursor: pointer;
  border-color: white;
  color: white;
}
button:active {
  border-color: black;
  color: black;
  background-color: white;
}