/* Add your CSS styles here */
body {
  font-family: sans-serif;
  line-height: 1.6;
  margin: 20px;
  background-color: #f9f9f9;
}

nav ul {
  list-style: none;
  padding: 0;
}

nav li {
  display: inline-block;
  margin-right: 15px;
}

a {
  color: #007bff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

article {
  background-color: #fff;
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid #eee;
  border-radius: 4px;
}

time {
  color: #666;
  font-size: 0.9em;
}

footer {
  margin-top: 40px;
  text-align: center;
  color: #888;
  font-size: 0.9em;
}

hr {
    border: 0;
    height: 1px;
    background: #ddd;
    margin: 20px 0;
}

/* Basic styling for list page */
aside {
  float: right;
  width: 25%;
  padding-left: 15px;
  margin-left: 15px;
  border-left: 1px solid #eee;
}

section {
  float: left;
  width: 70%;
}

/* Clear floats */
main::after {
  content: "";
  display: table;
  clear: both;
}

h1 {
  font-size: 2rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

section h1 {
  font-size: 1.8rem;
}

