* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
  }
  
  header {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 1rem;
  }
  
  header h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }
  
  header p {
    font-size: 1.1rem;
  }
  
  .app-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 2rem;
  }
  
  .app-card {
    background-color: #fff;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    padding: 2rem;
    margin: 1rem;
    width: 300px;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  .app-card h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .app-card p {
    margin-bottom: 1rem;
  }
  
  .app-link {
    display: inline-block;
    background-color: #333;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    text-decoration: none;
  }
  
  .app-link:hover {
    background-color: #555;
  }
  
  @media screen and (max-width: 768px) {
    .app-container {
      flex-direction: column;
    }
  }
  
  .prompt-section {
    background-color: #fff;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    padding: 2rem;
    margin: 1rem;
    width: 90%;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2rem;
  }
  
  .prompt-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  
  /* Add this new style rule */
  .prompt-section p {
    font-family: "Courier New", Courier, monospace;
  }