main header {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

main h2 {
  text-align: justify;
  word-break: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

time {
  font-style: italic;
  font-weight: normal;
  font-size: var(--defaultFontSize);
  font-family: Arial, Helvetica, sans-serif;
}

main img {
  max-width: 50%;
  height: auto;
}

p {
  font-size: clamp(var(--defaultFontSize), 8px + .8vw, 64px);
  line-height: 1.5;
  text-align: justify;
  hyphens: none;
  font-family: Arial, Helvetica, sans-serif;
  align-self: flex-start;
}

p:last-of-type {
  margin: 0px 0px var(--contentGap) 0px;
}

  @media (max-width: 950px) {
    main img {
      max-width: 100%;
      height: auto;
    }

    p {
      hyphens: auto;
    }    
  }