@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&display=swap');

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  margin: 0;
  padding: 0;
  color: #333;
  background: white;
}
.container {
  /*display: flex;
  align-items: flex-start;
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;*/
  display: table;
  width: 100%;
  max-width: 1300px;
  margin: 15px auto;
  padding: 40px 20px;
}
.sidebar {
  /*width: 200px;
  padding-right: 40px;
  border-right: 1px solid #ccc;
  display: flex;
  flex-direction: column;*/
  display: table-cell;
  vertical-align: top;
  width: 150px;
  padding-right: 20px;
  border-right: 1px solid #ccc;
}
.sidebar h1 {
  font-weight: 600;
  font-size: 1.7em;
  margin-bottom: 12px;
  margin-left: 0;
  margin-top: 10px;
  padding: 0;
}
.sidebar nav a {
  display: block;
  text-decoration: none;
  color: rgb(153, 151, 151);
  margin: 10px 30px;
  transition: all 0.2s ease-in-out;
}
.sidebar nav a:hover,
.sidebar nav a.active {
  color: rgb(85, 85, 85);
  font-weight: normal;
}
.content {
/*
  flex: 1;
  padding-left: 40px;*/

  display: table-cell;
  padding-left: 40px;
  padding-right: 600px;
  font-size: 0.85em;
}
.content img {
  max-width: 120%;   /* prevents overflow */
  /*width: 600px;      /* sets a fixed width (adjust as needed) */
  height: auto;      /* maintains aspect ratio */
  display: block;    /* optional: removes inline spacing */
  margin: 20px auto; /* optional: centers image */
}
a {
  color: #007acc;
}
footer {
  font-size: 0.85em;
  font-style: italic;
  margin-top: 60px;
  color: #666;
}
h2 {
  font-weight: 600;
  font-family: "New York", 'Libre Baskerville', Georgia, serif;
}