body {
	background-color: white;
	color: #333;
	font-family: -apple-system, helvetica, sans-serif;
	padding: 0;
	margin: 0;
	font-size: 1.2em;
}

h1 {
	width: 600pt;
	margin: auto;
  margin-top: 1em;
}

.moment {
	width: 600pt;
	margin: auto;
  margin-top: 3em;
  position: relative;
  line-height: 1.6em;
}

.moment img {
  width: 100%;
  margin-bottom: 0.5em;
}

.moment::before {
  content: attr(data-timestamp);
  position: absolute;
  left: -4em;
  color: #999;
}

@media screen and (max-width: 800px), screen and (max-device-width: 800px) {
  .moment, h1 {
    padding: 10pt;
    width: auto;
  }
  
  .moment {
    text-size: 2em;
  }
  
  .moment::before {
    content: attr(data-timestamp);
    position: absolute;
    top: 1em;
    left: 1em;
    color: #ccc;
    text-shadow: 1px 1px 2px #333;
  }
}