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;
  }

  .icon-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .icon-button button {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    font-size: 54px;
    color: #333;
    cursor: pointer;
    transition: transform 0.2s ease;
  }

  
  .icon-button button:hover {
    transform: scale(1.15);
  }
  
  .icon-button span {
    margin-top: 8px;
    font-size: 14px;
    color: #333;
  }

  @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;   
    }
  }