/* --- GLOBAL AESTHETIC --- */

body { 
  background: url('rain.jpg') repeat; 
  color: #2b1f1a; 
  font-family: "Georgia", serif; 
  padding: 2em; 
  border-image: url('your-border.gif') 30 round; 
  cursor: url('cursor1.gif'), auto; }
  
html { 
  background: rgba(178, 217, 219, 0.75); 
  border: 4px solid #3a4a3a; 
  border-radius: 12px; 
  padding: 2em; 
  box-shadow: 0 0 20px rgba(0,0,0,0.4); }

/* --- HEADINGS --- */

h1, h2, h3, h4 { 
  color: #7CCD7C; 
  text-shadow: 1px 1px 0 #dfe8df; 
  font-family: "IM Fell English", serif; }
/* --- LINKS --- */

a { 
  color: #BDFCC9; 
  text-decoration: none; 
  border-bottom: 2px dotted #BDFCC9; }

a:hover { 
  color: #2d3b2d; 
  border-bottom-style: solid; }

/* --- HEADER / BANNER --- */

header { display: block; 
  text-align: center; 
  margin-bottom: 2em; 
  padding: 1em; 
  background: rgba(40, 55, 40, 0.6); 
   border: 2px solid #2d3b2d;
  color: #f0f5f0; 
  border-radius: 5px; 
  box-shadow: 0 0 10px rgba(0,0,0,0.3); }
  
header img { 
  max-width: 100%; 
  border-radius: 8px; }
  
/* --- POSTS LIST --- */

.posts .post { margin-bottom: 1em; }
.posts .post a { 
  display: flex; 
  align-items: center; padding: 0.75em 1em; 
  background: rgba(50, 70, 50, 0.5); 
  border: 1px solid #2d3b2d; 
  color: #f0f5f0; 
  border-radius: 10px; 
  text-decoration: none; 
  gap: 1em; }
  
/* --- TABLES / CODE BLOCKS --- */

table, .highlight > pre, .example { 
  border: 2px dashed #3a4a3a; 
  background: rgba(255,255,255,0.7); 
  border-radius: 8px; }
  
/* --- FIGURES --- */

figure { 
  border: 2px solid #3a4a3a; 
  background: rgba(255,255,255,0.7); 
  padding: 1em; 
  border-radius: 8px; }
  
/* --- PARAGRAPH BLOCKS FOR BLOG POSTS --- */

.post-block {
  padding: 1em 1.25em;
  margin: 1.25em 0;
  background: rgba(50, 70, 50, 0.5);
  border: 2px solid #2d3b2d;
  border-radius: 10px;
  color: #f0f5f0;
  line-height: 1.6;
  font-size: 1.05em;
  box-shadow: 0 0 8px rgba(0,0,0,0.25);
}

.post-block date {
  display: block;
  font-family: monospace;
  font-size: 0.85em;
  color: #cfe8cf;
  margin-bottom: 0.5em;
  opacity: 0.9;
}

