* {
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;
}

.container {
    width: calc(100% - 70px);
    height: 400px;
    padding: 20px;
    margin: auto;
    margin-top: 20px !important;
    border-radius: 25px;
    background-color: rgb(232, 232, 232);
    box-shadow: 5px 5px 10px 0px rgb(204, 204, 204);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#msgValue {
    border: none;
    font-size: 15px;
    padding: 8px;
    width: calc(100% - 90px);
    border-radius: 10px;
    margin-right: 10px;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

#msgValue:focus {
    outline:none;
}

#send {
    border: none;
    background-color: rgb(95, 45, 223);
    padding: 8px;
    border-radius: 10px;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    color: white;
    cursor: pointer;
}



#messages {
    height: 350px;
    overflow-y: scroll;
}

.message {
    background-color: rgb(95, 45, 223);
    margin: 10px;
    margin-left: 0px;
    display: inline-block;
    padding: 10px;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    color: white;
    border-radius: 10px;
    transition: 0.5s;
}
