body {
  background-color: white;
  color: black;              
  font-family: georgia;
  line-height: 1.5;
  padding: 40px;
}

a {
  color: red;                  /* links stay red if needed */
  text-decoration: none;
}

/* Journal entries */
.entry {
  border: 1px solid white;     /* white box around entry */
  border-radius: 6px;
  padding: 20px;
  margin-bottom: 20px;
  background: peachpuff; 
  box-shadow: 0 0 5px white;      /* subtle white glow */
  font-size: 13px;
}

/* Date/time headings inside entries */
.entry h1, h2, h3, h4, h5 {
  margin-top: 0;
  font-size: 21px;
  color: black;                 
}

/* Paragraph text inside entries */
.entry p {
  color: black;                   
}

footer {
  color: #888;
  margin-top: 40px;
}
