body {
  margin: 0;
  font-family: 'Linux Libertine', 'Georgia', serif;
  background-color: #f8f9fa;
  color: #202122;
}

#container {
  display: flex;
}

/* Sidebar */
#sidebar {
  width: 220px;
  background: #f8f9fa;
  border-right: 1px solid #a2a9b1;
  padding: 15px;
  height: 100vh;
  position: fixed;
}

#sidebar h2 {
  font-size: 16px;
  margin-top: 0;
}

#sidebar a {
  text-decoration: none;
  color: #0645ad;
  display: block;
  margin: 5px 0;
}

/* Content */
#content {
  margin-left: 240px;
  padding: 20px 40px;
  max-width: 1000px;
}

h1 {
  font-size: 28px;
  border-bottom: 1px solid #a2a9b1;
  font-weight: normal;
}

h2 {
  border-bottom: 1px solid #a2a9b1;
  font-weight: normal;
  margin-top: 30px;
}

/* Infobox */
.infobox {
  float: right;
  width: 280px;
  border: 1px solid #a2a9b1;
  background: #f8f9fa;
  font-size: 14px;
  margin: 0 0 20px 20px;
}

.infobox th {
  background: #eaecf0;
  text-align: center;
  font-size: 16px;
  padding: 5px;
}

.infobox td {
  padding: 5px;
  border-top: 1px solid #a2a9b1;
}

.infobox img {
  width: 100%;
}

/* Texto */
p {
  line-height: 1.6;
}

.quote {
  font-style: italic;
  margin-left: 20px;
  color: #555;
}

/* Links */
a {
  color: #0645ad;
}

a:hover {
  text-decoration: underline;
}