*{
    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: whitesmoke;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    font-size: 20px;
    overflow: auto;
}
.user-chat-box{
    width: 60%;
    position: relative;
    left: 40%;
}
.ai-chat-box{
    width: 60%;
    position: relative;
}
.user-chat-area{
    width: 90%;
    padding: 20px;
    background-color: black;
    color: white;
    border-radius: 40px 0px 58px 40px;
    box-shadow: 2px 2px 10px black;
}
.ai-chat-area{
    width: 90%;
    padding: 20px;
    background-color: black;
    color: white;
    position: relative;
    left: 10%;
    border-radius: 0px 58px 53px 76px;
    box-shadow: 2px 2px 10px black;
}
#userImage{
    position: absolute;
    right: 0;
    filter:drop-shadow(8px 8px 10px black);
    
}
#aiImage{
    position: absolute;
    left: 0;
    filter:drop-shadow(8px 8px 10px rgb(0, 0, 0)) ;
}
.prompt-area{
    width: 100%;
    height: 20%;
    background-color: rgb(113, 144, 171);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.prompt-area input{
    width: 50%;
    height: 80px;
    background-color: rgb(11, 2, 2);
    color: antiquewhite;
    border: none;
    outline: none;
    border-radius: 50px;
    padding: 20px;
    font-size: 20px;
}
.prompt-area button{
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: black;
    border: none;
    box-shadow: 2px 2px 10px black;
    cursor: pointer;
    transition: all 0.5s;
}
.prompt-area button:hover{
    background-color: rgba(0, 0, 0, 0.381);
}
@media (max-width:600px){
    .user-chat-box{
        width:80%;
        left:20%;
    }
    .ai-chat-box{
        width: 80%;
    }
}