body {
    background-color: #f3f6fc;
    scroll-behavior: smooth;
    overflow-y: auto;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

i.bi.bi-person {
    display: none;
}

.nav {
    display: inline-flex;
    margin: auto;
    justify-content: center;
    width: 100%;
    margin-top: 20px;
    font-size: 50px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-weight: 600;
}

.chatbar {
    width: 80%;
    margin: auto;
    display: flex;
    justify-content: center;
    padding: 10px 9px 10px 11px;
    border-radius: 12px;
    box-shadow: 0 1px 6px 0 #20212447;
    background: white;
}
.chatbar input{
    width: 100%;
    border: none;
    outline: 0;
    font-size: 15px;
    font-weight: 500;
}
.chatbar button{
    border: none;
    background: white;
    outline: 0;
}
.chatbar .jfl{
    width: 100%;
    display: flex;
}
#chatlog{
    
}
#chatlog p{
    font-size: 20px;
}
#chatlog .bot p{
    font-size: 17px;
}
.user {
    padding: 20px 15px 20px 15px;
    font-size: 17px;
    font-weight: 600;
    width: 80%;
    margin: auto;
    margin-top: 15px;
    margin-bottom: 15px;
    border-radius: 8px;
    align-items: center;
    animation: popup 100ms;
    overflow-x: scroll;
}
.bot {
    padding: 20px 15px 20px 15px;
    background: white;
    text-align: left;
    width: 80%;
    margin: auto;
    margin-top: 15px;
    margin-bottom: 15px;
    border-radius: 8px;
    color: #000000;
    animation: popup 200ms;
    box-shadow: 0 1px 6px rgb(32 33 36 / 28%);
}