article {
  margin-top: 6%;
  text-justify: auto;
}

h2 {
  font-size: 1.3rem;
  margin-top: 4%;
}

#window {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  background-color: white;
  color: black;
}

@media (width < 600px) {
  #blog-post-window {
    width: 90%;
    height: 80%;
    /* background-color: red; */
  }
}

@media (width > 600px) {
  #blog-post-window {
    width: 60%;
    height: 80%;
    /* background-color: red; */
  }
}

#header {
  text-align: center;
  margin: 0 auto;
  width: 50%;
  /* background-color: rgb(43, 43, 211); */
}

@media (width < 600px) {
  #blog-name {
    font-size: 2rem;
  }
}

@media (width > 600px) {
  #blog-name {
    font-size: 2.5rem;
  }
}

#blog-name-link {
  color: inherit;
  text-decoration: none;
}

#header-buttons {
  margin-top: 12%;
  font-size: 1.5rem;
  display: flex;
}

#posts-button {
  text-align: center;
  flex: 1;
  color: inherit;
}

#about-me-button {
  text-align: center;
  flex: 1;
  color: inherit;
}

#blog-post-title {
  font-size: 1.8rem;
}

#blog-post-metadata {
  margin-top: 3%;
  font-size: 1rem;
  line-height: 0.4;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-style: italic;
  margin-bottom: 2%;
}

#calendar-icon {
  flex: 1;
}

figcaption {
  padding-top: 5px;
}

#blog-post-date {}

#blog-post-tags {}

#blog-post-content {
  margin-top: 2%;
  font-size: 1.2rem;
  line-height: 1.2;
  text-align: justify;
  text-justify: inter-word;
}

#about-me-content {
  margin-top: 2%;
  font-size: 1.2rem;
  line-height: 1.2;
  text-align: justify;
  text-justify: inter-word;
}

#post-list {
  font-size: 1.3rem;
  line-height: 2;
}

.center-figure>img {
  display: block;
  margin: 0px auto;

  width: 100%;
  height: auto;
}

.center-caption>figcaption {
  text-align: center;
  font-style: italic;
  font-size: 1rem;
}

@media (width < 1024px) {
  img {
    max-width: 100%;
  }
}

@media (width > 1024px) {
  img {
    max-width: 500px;
  }
}