.blog-post {
  margin-top: 16px;
  display: flex;
  justify-content: space-between;
  padding: 8px;
  width: 100%;
  border: 2px solid white;
  border-radius: 10px;
  text-decoration: none;
  color: white;
  transition: 0.3s ease;
  opacity: 0.7;
}

.blog-post:hover {
 opacity: 1;
}