body {
  color: white;
  font-family: Arial;
  overflow-x: hidden;
}

#post {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #171717;
  padding: 10px;
}

#post-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #2e2e2e;
}

#content-wrapper {
  padding: 0 20px;
}

#post-cover-stretcher {
  background-color: #1c1c1c;
  width: 100%;
  display: flex;
  justify-content: center;
}

#post-cover {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: top;
}

#post-title {
  margin: 100px auto 20px auto;
  max-width: 800px;
  width: 100%;
  font-size: 50px;
}

#post-body {
  margin: 40px auto 200px auto;
  max-width: 800px;
  font-size: 28px;
  line-height: 1.6;
}

.inner-image {
  object-fit: contain;
  width: 100%;
  margin: 20px 0;
}

#img-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);

  display: flex;
  justify-content: center;
  align-items: center;
}

#image-view {
  max-height: 50%;
  max-width: 100%;
}

#close-btn {
  top: 20px;
  right: 20px;

  width: 40px;
  aspect-ratio: 1/1;

  font-size: 20px;

  position: absolute;

  color: white;

  background-color: #333;
  border: 1px solid #424242;

  padding: 8px;
}

#close-btn:hover {
    background-color: #444;
    transition: background-color 0.2s ease-in-out;
    cursor: pointer;
}
