/*LAYOUT*/

#blogIndex {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.blog-index {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.blog-index a {
  display: inline-block;
}

/*THUMBNAIL*/

.blog-index a img {
  display: block;
  width: 250px;   /* pick a size you like */
  height: auto;
  border: 3px solid transparent;
  cursor: pointer;
}

.blog-index a img:hover {
  border-color: #98d680;
}

/* TEXT */

.blog-index .txt p {
    font-size: 18px;
    color: #999999;
    padding-left:30px;
}

.blog-index .txt h1 {
    font-size: 22px;
    padding-left:30px;
}

/*NAVIGATION*/

.post-nav {
  display: flex;
  justify-content: space-between;
  margin: 2rem 0;
}

#prevPost, #nextPost {
  padding: 5px 5px;
  background-color: #98d680;
  color: white;
  text-decoration: none;
  border-radius: 5px;
}

#prevPost:hover, #nextPost:hover {
  background-color: #98d680;
}

/*BLOGPOST*/

#postContent img {
  max-width: 100%;
  height: auto;
  display: block;
}
