 
h1 {
    position: fixed;
    top: 0;
    left: 50%;
    right: 50%;
    text-align: center;
    padding: 10px;
    background-color: #F0F0F0;
    border: 1px solid #CCCCCC;
    border-radius: 20px;
    width: 20%;
    margin-left: -10%;

  }
  
  .message {
    display: flex;
    align-items: flex-end;
    padding: 20px;
    margin-bottom: 20px;
    
  }
  
  .message-bubble {
    background-color: #F0F0F0;
    border-radius: 10px;
    padding: 10px 10px;
    max-width: 60%;
    margin-left: 20%
    
  }
  .response-bubble {
    align-items: center;
    background-color: #ffeae0;
    border-radius: 10px;
    padding: 10px 10px;
    max-width: 60%;
    margin-left: 20%
  }
  
  #response-area {
    padding: 20px;
    overflow-y: scroll;
  }

  #text-form {
    position: fixed;
    bottom: 10px;
    left: 0;
    right: 0;
    
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
  }
  
  #text-input {
    width: 50%;
    padding: 10px;
    font-size: 16px;
    border-color: black;
    border-radius: 20px 0 0 20px;
  }
  
  button[type="submit"] {
    padding: 10px;
    font-size: 16px;
    
    background-color: rgb(98 98 98);
    color: white;
    border-radius: 0 20px 20px 0;
  }

  .message-profile-picture {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    position: absolute;
    left: 0;
    margin-left: 10%;
    translate: 0px 5px;
    z-index: -1;
  }
  
  
  
  
  
