body {
    background: 
      radial-gradient(at 50% 60%, rgba(255, 255, 255, 0.2) 0%, #003153 60%), /* Center glow */
      radial-gradient(circle at top left, rgba(255, 255, 255, 0.08), transparent 90%),
      radial-gradient(circle at top right, rgba(255, 255, 255, 0.08), transparent 90%),
      radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.08), transparent 90%),
      radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.08), transparent 90%),
      #003153; /* Base color fallback */
    
    width: 100%;
    font-family: 'Modern Sans-Serif';
    padding-top: 80px;
    margin: 0;
  }

  .nav h1 {
    display: inline-block;
    transform-origin: center;
  }
  
  .nav {
    font-family: 'Modern Sans-Serif';
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #003153;
    border-bottom: 2px solid red;
    z-index: 1000;
  
    display: flex;
    justify-content: center;
    padding: 20px 0;
  }
  
  .nav-inner {
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
  }
  
  .nav h1 {
    color: white;
    margin: 0;
    font-size: 24px;
  }
  
  .menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: white;
  }
  
  .nav-links {
    display: flex;
    gap: 20px;
  }
  
  .nav-links a {
    color: white;
    font-size: 18px;
    text-decoration: underline;
    font-family: 'Sans-Serif';
  }
  
  .nav-links a:hover {
    text-decoration: none;
  }
  
  
  @media screen and (max-width: 768px) {
    .menu-toggle {
      display: block;
    }
  
    .nav-links {
      width: 100%;
      display: none;
      flex-direction: column;
      align-items: center;
      margin-top: 10px;
    }
  
    .nav-links.active {
      display: flex;
    }
  
    .nav-links a {
      font-size: 20px;
      padding: 10px 0;
    }
  }
  

  /* Title */

  .title h1 {
    color: white;
    text-align: center;

  }