body {
  margin: 2;
  font-family: Georgia, "Times New Roman", serif;
  background-color: #fcd5b1; 
  color: #222;  
}

h1, h2, h3 {
    color: #6b0f1a;
    margin-bottom: 0.5em;
}

h1 {
    position: relative;
    padding-bottom: 10px;
}

h1::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;        /* length of trim */
    height: 4px;        /* thickness */
    background-color: #f2c94c;
}

nav a {
    color: #6b0f1a;
    text-decoration: none;
    font-weight: bold;
}

nav a:hover {
    color: #f2c94c;
}

.layout {
  display: flex;
  height: 100vh;
}

.sidebar {
  width: 250px;
  background: #111;
  color: #FFCE1B;
  padding: 1rem;
  overflow-y: auto;   /* 👈 scroll when menu is long */
}
header {
    border-bottom: 3px solid #f2c94c;
    padding: 20px 40px;
}
.sidebar a {
  color: #ddd;
  text-decoration: none;
  display: block;
  padding: 0.4rem 0;
}

.sidebar a:hover {
  color: white;
}

.content {
  flex: 1;
  padding: 2rem;
  overflow-y: auto;

  max-width: 750px;   /* controls line length */
  margin: 0 auto;     /* centers it horizontally */
}
.dropcap {
    float: left;
    font-size: 4.2em;      /* size of the letter */
    line-height: 0.8;      /* pulls text up tighter */
    margin-right: 10px;    /* space between letter and word */
    margin-top: 4px;       /* nudges it down slightly */
    font-weight: 700;
}
