/* Pure HTML Style - Classic 90s Browser Default */

* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  font-family: 'Times New Roman', Times, serif;
  background-color: #ffffff;
  color: #000000;
  line-height: 1.5;
  margin: 0;
  padding: 0;
  font-size: 16px;
}

.container {
  max-width: 750px;
  margin: 0 auto;
  padding: 20px;
}

/* Header */
header {
  max-width: 750px;
  margin: 0 auto;
  padding: 20px 20px 15px 20px;
  border-bottom: 1px solid #808080;
}

header h1 {
  font-size: 24px;
  font-weight: bold;
  margin: 0 0 5px 0;
}

header p {
  margin: 0;
  font-size: 14px;
  color: #000000;
}

nav {
  display: none;
}

/* Sections */
.section {
  margin-bottom: 25px;
}

.section h2 {
  font-size: 18px;
  font-weight: bold;
  margin: 0 0 10px 0;
  border-bottom: 1px solid #808080;
  padding-bottom: 3px;
}

.section h3 {
  font-size: 16px;
  font-weight: bold;
  margin: 15px 0 8px 0;
}

/* About */
.about-text {
  font-size: 14px;
  line-height: 1.5;
}

.about-text p {
  margin: 0 0 10px 0;
}

/* Interests */
.interests-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.interests-list li {
  display: inline;
}

.interests-list li::after {
  content: " | ";
  color: #808080;
}

.interests-list li:last-child::after {
  content: "";
}

/* Entries - boxed like papers */
.entry {
  border: 1px solid #c0c0c0;
  border-left: 3px solid #0000ee;
  background-color: #f8f8f8;
  padding: 10px;
  margin-bottom: 15px;
}

.entry:last-child {
  margin-bottom: 0;
}

.entry-title {
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 3px;
}

.entry-authors {
  font-size: 13px;
  font-style: italic;
  margin-bottom: 3px;
}

.entry-meta {
  font-size: 12px;
  color: #404040;
  margin-bottom: 6px;
}

.entry-description {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 6px;
}

.entry-description img {
  max-width: 100%;
  height: auto;
  margin: 8px 0;
  border: 1px solid #808080;
}

.entry::after {
  content: "";
  display: table;
  clear: both;
}

.entry-buttons {
  margin-top: 5px;
}

.entry-buttons a {
  margin-right: 8px;
  font-size: 13px;
}

.entry-buttons a::before {
  content: "[";
}

.entry-buttons a::after {
  content: "]";
}

/* Links - classic blue */
a {
  color: #0000ee;
  text-decoration: underline;
}

a:visited {
  color: #551a8b;
}

a:hover {
  color: #0000ee;
}

/* Code */
pre, code {
  font-family: 'Courier New', Courier, monospace;
  font-size: 14px;
  background-color: #e8e8e8;
}

code {
  padding: 1px 3px;
}

pre {
  overflow-x: auto;
  padding: 10px;
  border: 1px solid #808080;
}

blockquote {
  border-left: 3px solid #808080;
  margin: 10px 0 10px 20px;
  padding-left: 10px;
  color: #404040;
}

/* Images */
img {
  max-width: 100%;
  height: auto;
}

/* Horizontal rule */
hr {
  border: none;
  border-top: 1px solid #808080;
  margin: 20px 0;
}

/* Footer */
footer {
  margin-top: 25px;
  padding-top: 10px;
  border-top: 1px solid #808080;
  font-size: 12px;
  color: #404040;
}

footer a {
  margin: 0 3px;
}

/* Responsive */
@media (max-width: 768px) {
  .container {
    padding: 15px;
  }

  header {
    padding: 15px;
  }

  .entry-description img {
    float: none !important;
    display: block;
    margin: 8px 0 !important;
  }
}

/* Diversion image */
.diversion-image {
  float: right;
  margin: 0 0 10px 10px;
  border: 1px solid #c0c0c0;
  padding: 3px;
  background-color: #f8f8f8;
}

.diversion-image img {
  max-width: 150px;
}
