body {
    background-color: #f2f2f2;
  }
  
  .chat-window {
    width: 100%;
    margin: 50px auto;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0px 0px 10px #aaa;
  }
  
  .chat-header {
    background-color: #007bff;
    color: #fff;
    padding: 10px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
  }
  
  .chat-header h2 {
    margin: 0;
  }
  
  .chat-history {
    height: 300px;
    overflow-y: scroll;
    padding: 10px;
  }
  
  .chat-history ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  .chat-history li {
    margin: 10px 0;
  }
  
  .chat-history li.user-message {
    text-align: right;
  }
  
  .chat-history li.bot-message {
    text-align: left;
  }
  
  .chat-history li p {
    background-color: #007bff;
    color: #fff;
    padding: 5px 10px;
    border-radius: 10px;
    display: inline-block;
    max-width: 70%;
  }
  
  .chat-input {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
  }
  
  .chat-input input[type="text"] {
    flex-grow: 1;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
  }
  
  .chat-input button {
    padding: 10px;
    margin-left: 10px;
    border: none;
    background-color: #007bff;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
  }
  
  .chat-input button:hover {
    background-color: #0069d9;
  }

  .intro-container{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

  }
  
  .intro-container img{
    width: 50%;
    min-width: 300px;

  }

  #loader{
    font-size: 25px;
    text-align: center;
  }