body {
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    font-family: 'Nunito', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
  }

/* === Layout Containers === */
.responsive-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .window-tab {
    width: 90vw;
    max-width: 800px;
    height: 500px;
    border: 2px solid #b8b8b8;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
  }
  
  .title-bar {
    height: 50px;
    background-color: #444;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    flex-shrink: 0;
  }
  
  .title-text {
    font-family: 'Space Mono', monospace;
    font-size: 20px;
    color: #fff;
    letter-spacing: 1px;
  }
  
  .window-body {
    background-color: #fff;
    flex-grow: 1;
    padding: 50px 40px 60px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    overflow-y: auto;
  }

  /* === Back Buttons === */
  .back-button { 
    font-family: 'Space Mono', monospace; 
    font-size: 16px; 
    color: #fff; 
    text-decoration: none; 
    padding: 0; 
    margin: 0; 
    cursor: pointer; 
    transition: transform 0.2s ease; 
    line-height: 1;
  }  

  .back-button:hover {
        transform: scale(1.05);
  }

  /* === Intro Text === */

  .intro-text {
    background-color: #fff8dc;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 25px;
    font-size: 1rem;
    color: #333;
    font-weight: 600;

    margin-left: auto; 
    margin-right: auto;  
    text-align: center; 
  }
  
  .intro-text a {
    color: #d9822b;
    text-decoration: underline;
  }

  /* === Dividers === */

  .divider {
    border-top: 1px solid #ddd;
    margin: 40px 0;
    width: 100%;
  }

  /* === Tools and Development === */

  .tools-section, .development-section {
    margin-bottom: 30px;
  }
  
  .tools-section h2,
  .development-section h2,
  .projects-section h2 {
    text-align: left;
    font-weight: 800;
    font-size: 2rem; /* Increased from 1.2rem */
    margin-bottom: 18px;
    letter-spacing: 0.5px;
    color: #222;
  }

  .tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    transition: all 0.2s ease;
  }
  
  .tag {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 8px 14px;
    font-size: 0.95rem;
    box-shadow: 2px 2px 3px rgba(0,0,0,0.1);
    cursor: default;
    user-select: none;
  }

  .tag:hover {
    cursor: pointer;
    transform: scale(1.05);
  }

  /* === Projects Section === */

  .projects-section {
    margin-top: 30px;
    width: 100%;
  }
  
  .projects-section h2 {
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 1px;
    color: #333;
  }
  
  .project-entry {
    margin-bottom: 50px;
    max-width: 100%;
  }
  
  .project-image {
    width: 100%;
    max-width: 400px;
    border-radius: 12px;
    margin-bottom: 20px;
    display: block;
  }
  
  .project-title {
    color: #f49c23;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 15px;
  }
  
  .project-description {
    font-size: 1rem;
    color: #333;
    margin-bottom: 12px;
    line-height: 1.6;
  }
  
  .project-description a {
    color: #d9822b;
    text-decoration: underline;
  }

  /* === Github Footer === */

  .github-footer {
    font-size: 1.1rem;
    margin-top: 40px;
    color: #333;
    text-align: left;
    width: 100%;
  }
  
  .github-footer a {
    color: #d9822b;
    text-decoration: underline;
    font-weight: 600;
  }
  
  .github-footer a:hover {
    opacity: 0.8;
  }

  @media (max-width: 800px) {
   
    .window-tab {
        width: 100vw;
        height: 100vh;
        border-radius: 0;
        border: none;
        box-shadow: none;
        display: flex;
        flex-direction: column;
    }
    
    .window-body {
        flex-grow: 1;
        overflow-y: auto;
        padding: 40px 20px 60px; 
        display: block;
    }

}

@media (min-width: 801px) {
    body {
      background-image: url('background.png');
      background-size: cover;         
      background-repeat: no-repeat;
      background-position: center;
      background-attachment: fixed;   
    }
  }

