body {
        background-image: url('https://webneel.com/wallpaper/sites/default/files/images/07-2018/7-flower-wallpaper-beautiful-hd-mrahman92.jpg');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        background-attachment: fixed;
        min-height: 100vh;
        margin: 0;
        font-family: sans-serif;
        color: white;
      }

      /* Dark overlay so text stays readable */
      body::before {
        content: '';
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 10, 0.6);
        z-index: 0;
      }

      /* Keeps all content above the overlay */
      body > * {
        position: relative;
        z-index: 1;
      }

      /* Content card in the center */
      .content {
        max-width: 700px;
        margin: 60px auto;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: 12px;
        padding: 2rem 2.5rem;
        backdrop-filter: blur(6px);
      }

      h1 {
        margin-top: 0;
      }

      a {
        color: #7dd3fc;
      }

      img {
        max-width: 100%;
        border-radius: 8px;
        
       
      }
      
      <!DOCTYPE html>
<html>
  <head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>About Us – Team Extraterrestrial</title>
    <link href="style.css" rel="stylesheet">
    <style>
      body {
        background-image: url('https://images.unsplash.com/photo-1462331940025-496dfbfc7564?w=1600&q=80');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        background-attachment: fixed;
        min-height: 100vh;
        margin: 0;
        font-family: sans-serif;
        color: white;
      }
 
      body::before {
        content: '';
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 10, 0.6);
        z-index: 0;
      }
 
      body > * {
        position: relative;
        z-index: 1;
      }
 
      .content {
        max-width: 700px;
        margin: 60px auto;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: 12px;
        padding: 2rem 2.5rem;
        backdrop-filter: blur(6px);
      }
 
      h1 {
        margin-top: 0;
      }
 
      h2 {
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        padding-bottom: 6px;
        margin-top: 2rem;
      }
 
      .team-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        margin-top: 1rem;
      }
 
      .team-card {
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 10px;
        padding: 12px 16px;
      }
 
      .team-card .name {
        font-weight: bold;
        font-size: 15px;
      }
 
      .team-card .role {
        font-size: 13px;
        color: #7dd3fc;
        margin-top: 2px;
      }
 
      .project-card {
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 10px;
        padding: 16px 20px;
        margin-top: 1rem;
      }
 
      .project-card h3 {
        margin: 0 0 8px;
        font-size: 18px;
      }
 
      .project-card p {
        margin: 0;
        font-size: 14px;
        line-height: 1.6;
        color: rgba(255, 255, 255, 0.85);
      }
 
      a {
        color: #7dd3fc;
      }
 
      .back-link {
        display: inline-block;
        margin-bottom: 1.5rem;
        font-size: 14px;
        color: #7dd3fc;
        text-decoration: none;
      }
 
      .back-link:hover {
        text-decoration: underline;
      }
 {   </style>
  </head>
  <body>
    <div class="content">
      <a href="about.html" class="back-link">← Back To Home</a>
      <h1>About Us</h1>
      <p>We are Team Extraterrestrial — a passionate group of creators, designers, writers, and developers working together to bring exciting stories and projects to life.</p>
 
      <h2>Our Team</h2>
      <div class="team-grid">
        <div class="team-card">
          <div class="name">Sebastian B</div>
          <div class="role">Director &amp; Creator</div>
        </div>
        <div class="team-card">
          <div class="name">Parker C</div>
          <div class="role">Sprite Designer</div>
        </div>
        <div class="team-card">
          <div class="name">TJ S</div>
          <div class="role">Sprite Designer</div>
        </div>
        <div class="team-card">
          <div class="name">Margo H</div>
          <div class="role">Writer</div>
        </div>
        <div class="team-card">
          <div class="name">Clement B</div>
          <div class="role">Merch Marketer &amp; Designer</div>
        </div>
        <div class="team-card">
          <div class="name">Lorelei S</div>
          <div class="role">Background Designer</div>
        </div>
        <div class="team-card">
          <div class="name">Thomas S</div>
          <div class="role">Coder</div>
        </div>
        <div class="team-card">
          <div class="name">Issac W</div>
          <div class="role">Musician</div>
        </div>
      </div>
 
      <h2>Our Projects</h2>
      <div class="project-card">
        <h3>The Red Ninja</h3>
        <p>Follow Robin, a young boy who sets out on a daring adventure to stop the villainous Dr. Nightingale from carrying out a plot to wipe out all of humanity. Packed with action, heart, and high stakes, The Red Ninja is Team Extraterrestrial's flagship project.</p>
      </div>
    </div>
  </body>
</html> }
