*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;

}
body{
  width: 100%;
  height: 100vh;
}

.chat-container{
  width: 100%;
  height: 80%;
  background-color: rgb(41, 56, 70);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 18px;
  overflow: auto;
}

.user-chat-box{
  width: 60%;
  position: relative;
  left: 40%;
  
}

.user-chat-area{
  width: 90%;
  padding: 20px;
  background-color: #081b29;
  color: white;
  border-radius: 40px 0 40px 40px;
  box-shadow: 2px 2px 10px black;
  display: flex;
  gap: 10px;
  flex-direction: column;
}

.AI-chat-box{
  width: 60%;
  position: relative;
}

.chooseimg{
  width: 30%;
  border-radius: 30px;
}

.AI-chat-area{
  width: 90%;
  padding: 20px;
  background-color: #144364;
  position: relative;
  left: 11%;
  border-radius: 0 40px 40px 40px;
  box-shadow: 2px 2px 10px black;
  gap: 10px;
  color: white;
}

#User_Image{
  position: absolute;
  right: 0;
  filter: drop-shadow(2px 2px 10px black);
  margin-left: 10px;
}

#AI_Image{
  position: absolute;
  left: 0;
  filter: drop-shadow(2px 2px 10px black);
  border-radius: 20px;
  
}

.prompt-area{
  width: 100%;
  height: 20%;
  background-color: rgb(41, 56, 70);
  display:flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.prompt-area input{
  width: 50%;
  height: 60px;
  background-color: whitesmoke;
  outline: none;
  border: none;
  border-radius: 50px;
  padding: 20px;
  color: black;
  font-size: 20px;
  box-shadow: 2px 2px 10px black;
}

.prompt-area button{
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color:#144364;
  border: none;
  cursor: pointer;
  transition: all 0.5s;
  box-shadow: 2px 2px 10px black;
}

.prompt-area button:hover{
  background-color: #081b29;
}

.load{
  filter: drop-shadow(2px 2px 10px blue);
}

.choose{
  width: 50px;
  height: 50px;
  border-radius: 50%;
}
#image{
  display: flex;
  align-items: center;
  justify-content: center;
}

@media(max-width:600px){
  .user-chat-box{
    width: 80%;
    left:20%
  }
  .AI-chat-box{
    width: 80%;
  }   
}