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

body {
    display: flex;
    margin-left: 2em;
    margin-right: 2em;
    flex-direction: column;
    align-items: left;
    justify-content: center;
    height: 100vh;
    font-family: "Raleway", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    color: white;
    background-color: #201f22;
    font-size: 40px;
    border: 2px solid white;
}

#chat {
    border: 1px solid #ccc;
    padding: 1em;
    height: 80%;
    overflow-y: scroll;
}

.message {
    margin: 0.5em 0;
}

.typing {
    font-style: italic;
    color: white;
}
