		*{
 margin : 0;
 padding: 0;
 box-sizing: border-box;
}

body{
	margin-top: 20pt;
}

#entries {
  display: flex;
  flex-direction: row;
}

.entry {
  font-family: sans-serif;
  line-height: 1.3em;
  min-width: 200px;
  max-width: 200px;
  margin-bottom: 200px;
  margin-left: 20px;
}

.entry a {
  text-decoration: none;
  color: #AAA;
}

.entry p a[href] {
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.entry p:first-of-type {
  -webkit-margin-before: 0em;
}

.entry p {
  margin-bottom: 1.07em;
}



#dot-dot-dot:after {
  overflow: hidden;
  display: inline-block;
  vertical-align: bottom;
  -webkit-animation: ellipsis steps(4,end) 900ms infinite;
  animation: ellipsis steps(4,end) 900ms infinite;
  content: "\2026"; /* ascii code for the ellipsis character */
  width: 0px;
}

@keyframes ellipsis {
  to {
    width: 22px;
  }
}

@-webkit-keyframes ellipsis {
  to {
    width: 22px;
  }
}
