#chat {
    background-color: gray;
    height: 60%;
    width: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 3px solid black;
    border-radius: 20px;
}
@media screen and (max-width: 700px) {
    #chat {
        width: 95%;
    }
}
@media screen and (max-height: 800px) and (min-height: 600px) {
    #chat {
        height: 55%;
    }
}
@media screen and (max-height: 600px) {
    #chat {
        height: 45%;
    }
}
#all-chats {
    background-color: darkgray;
    width: 90%;
    height: 96%;
    font-size: 20px;
    padding: 10px;
    text-align: center;
}
#words {
    width: 90%;
}
@media screen and (max-width: 820px) {
    #words, #all-chats {
        width: 80%;
    }
}
#text-input {
    width: 90%;
    margin-bottom: 5px;
}
#send {
    background-color: rgb(0, 175, 255);
    color: black;
    border-radius: 10px;
}