/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body { 
  background-color: #0b0914; /* Deepened to blend with containers */
  color: #e0dbec; 
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; /* Cleaner body text */
  line-height: 1.6; 
  margin: 0; 
  padding: 20px; 
} 

header, nav, main, footer { 
  max-width: 800px; 
  margin: 0 auto 20px auto; 
  background: #161233; 
  padding: 20px; 
  border: 2px solid #4a3b8c; 
  border-radius: 8px; 
  box-shadow: 0 0 15px rgba(138, 43, 226, 0.3); 
} 

nav a { 
  color: #9d8df1; 
  margin-right: 20px; 
  text-decoration: none; 
  font-weight: bold; 
} 

nav a:hover { 
  color: #ffb7b2; 
  text-shadow: 0 0 5px #ffb7b2; 
} 

h1, h2, h3 {
  color: #bfa2db;
  font-family: 'Courier New', Courier, monospace; 
}

.accent-box { 
  border-left: 4px solid #ffb7b2; 
  padding-left: 15px; 
  background: #1f1a40; 
} 

p {
  color: #d1cbe3; 
}

p strong {
  color: #FF6F61; 
}
