/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    background-color: #0d0d2b; /* deep indigo-blue */
    color: #c1bfff; /* soft lavender-blue */
    font-family: 'Cinzel Decorative', serif;
    text-align: center;
    padding: 2rem;
  }
  
  /* Google Fonts (optional) */
  @import url('https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@400;700&display=swap');
  
  h1 {
    font-size: 3rem;
    text-shadow: 0 0 10px #6a5acd, 0 0 20px #8a2be2;
    margin-bottom: 2rem;
    color: #dcd6ff;
  }

  .nav-list a {
    text-decoration: none;
    color: inherit;
    display: block;
    width: 100%;
    height: 100%;
  }

  ul.about-list {
    list-style-type: none;
  }
  
  /* Navigation */
  ul.nav-list {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
  }
  
  ul.nav-list li {
    font-size: 1.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(145deg, #3b3c8b, #2a296b);
    border: 2px solid #5f5fff;
    border-radius: 8px;
    color: #e0e0ff;
    box-shadow: 0 0 10px #5f5fff;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
  }
  
  ul.nav-list li:hover {
    transform: scale(1.1);
    background: linear-gradient(145deg, #4a47a3, #2c2a6a);
    box-shadow: 0 0 15px #7b68ee;
  }
  
  /* Articles Section */
  .articles, .about {
    font-size: 1.2rem;
    padding: 2rem;
    background-color: rgba(30, 30, 80, 0.6);
    border: 1px solid #7f7fff;
    border-radius: 10px;
    box-shadow: 0 0 20px #5f5fff;
    max-width: 600px;
    margin: 0 auto;
    color: #eaeaff;
  }
  
  .articles {
    display: flex;
    flex-direction: column;
    gap: 2rem; /* adds space between articles */
    max-width: 800px;
    margin: 0 auto;
  }
  
  /* Individual Article Box */
  .article {
    background-color: rgba(45, 45, 85, 0.8);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(138, 43, 226, 0.3);
    border: 1px solid #5f5fff;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  
  .article:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(138, 43, 226, 0.6);
  }
  
  /* Article Title */
  .article-title {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #dcd6ff;
    text-shadow: 0 0 5px #7b68ee;
  }
  
  /* Author */
  .author {
    font-size: 1rem;
    color: #a6a3ff;
    margin-bottom: 1rem;
    font-style: italic;
  }
  
  /* Paragraph/Text */
  .article p {
    font-size: 1.1rem;
    color: #eaeaff;
    line-height: 1.6;
  }
  