@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Montserrat", serif;
}

body{
    width: 100%;
    height: 100vh;
    background-color: #000000;
}

.header {
    color: white;
    padding: 20px 0px;
    display: flex;
    justify-content: center;
}

.chat{
    display: flex;
    gap: 20px;
    padding: 25px;
    color: #fff;
    font-size: 15px;
    font-weight: 300;
}

.chat img{
    width: 35px;
    height: 35px;
    border-radius: 50%;
}

.response{
    background-color: #330f96;
}

.messagebar{
    position: fixed;
    bottom: 0;
    height: 5rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 1px solid #494b59;
    background-color: #000000;
    outline: none;
}

.messagebar .bar-wrapper{
    background-color: #192153;
    border: 5px;
    width: 60vw;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 50px;
}


.bar-wrapper input{
    width: 100%;
    padding: 5px;
    border: none;
    outline: none;
    font-size: 14px;
    background: none;
    color: #ccc;
}

.bar-wrapper input::placeholder{
    color: #ccc;
}

.messagebar button{
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
}

.message-box{
    height: calc(100vh-5rem);
    overflow-y: auto;
}