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

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

/* Horizontal Navigation Banner Styling */
.nav-bar {
  background-color: #333;
  padding: 10px 0;
  text-align: center;
}

.nav-bar a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  margin: 0 15px; /* Space between links */
  display: inline-block;
}

.nav-bar a:hover {
  color: #ffd700; /* Highlight color on hover */
}

/* Content Styling */
main {
  width: 80%;
  max-width: 800px;
  margin: 20px auto; /* Adds space between navigation and content */
  padding: 20px;
  list-style-type: none; /* Removes bullets */
}

h1 {
  margin-bottom: 20px;
}

/* Post List Styling */
.post-list {
  margin-top: 20px;
  list-style-type: none; /* Removes bullets */
  padding: 0; /* Removes default padding */
}

.post-list li {
  margin-bottom: 15px;
}

.post-list a {
  font-size: 1.2em;
  color: #333;
  text-decoration: none;
  font-weight: bold;
}

.post-list a:hover {
  text-decoration: underline;
}

.post-list small {
  color: #888;
  display: block;
  margin-top: 5px;
}

/* Ensure spacing between paragraphs */
.post-content p {
  line-height: 1.6;
  margin-bottom: 1em;
}

/* Resume Header */
.resume-header {
  text-align: center;
  margin-bottom: 1.5em;
}

.resume-header h1 {
  font-size: 2em;
  font-weight: bold;
}

.resume-header p {
  font-size: 1em;
  margin: 0;
}

/* Job Titles and Institutions */
h3, h4 {
  font-weight: bold;
  color: #555;
}

.resume-section {
  margin-bottom: 2.0em;
}

/* List Styling */
ul {
  list-style-type: none;
  padding-left: 0;
}

li {
  margin: 0.5em 0;
}