
/* Base Reset */
* {
  box-sizing: border-box;
}
html, body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  background-color: #202020;
  color: rgba(255, 255, 255, 0.85);
}

/* Container with sidebar and main content */
.container {
  display: flex;
  min-height: 100vh;
}

/* Sidebar */
#sidebar {
  width: 18rem;
  padding: 2rem 1rem;
  background-color: #202020;
  color: white;
  flex-shrink: 0;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

/* Sidebar Links */
#sidebar a {
  display: block;
  margin-bottom: 1rem;
  color: white;
  font-weight: bold;
  text-decoration: none;
  font-size: 1.1rem; 
}


#sidebar a.active {
  color: #7852A9;
}

/* Sidebar Footer */
#sidebar footer {
  margin-top: auto;
  font-size: 0.9rem;
  color: #ccc;
}

/* Sidebar Footer Links */
#sidebar footer a {
  font-size: 0.87rem;
  color: #7852A9;
  display: inline;
  
}

/* Main Content */
.content {
  margin-left: 18rem;
  padding: 2rem;
  background-color: white;
  color: #333;
  flex-grow: 1;
  font-weight: normal;
}

.content p,
.content li {
  font-size: 1.1rem;
}

/* Headings */

h1 {
  font-family: 'Playfair Display', serif;
}

h1, h2, h3 {
  color: #000000;
}

/* Links */
a {
  color: #7852A9;
}
a:hover, a:focus {
  text-decoration: underline;
}

/* Lists */
ul {
  margin-top: 1rem;
  padding-left: 1.5rem;
}

.custom-font-heading {
  font-family: 'Playfair Display', serif; /* or any font you like */
  font-size: 2.5rem;
  font-weight: 400;
  color: white; /* optional */
}
