/* הגדרת הפונט החדש */
body {
    font-family: 'Heebo', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
  }
  
  .container {
    max-width: 400px;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  }
  
  /* כותרות */
  h1 {
    font-weight: 600;
    font-size: 1.8rem;
  }
  
  /* טקסט רגיל */
  p {
    font-weight: 400;
    font-size: 1rem;
    margin: 10px 0;
  }
  
  /* כפתור */
  button {
    background: #4caf50;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
  }
  
  button:hover {
    background: #45a049;
  }
  
  .response {
    margin-top: 20px;
    font-size: 0.9rem;
    background: rgba(0, 0, 0, 0.2);
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  }
  