* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

body {
    background-color: #444;
    /* height: 100vh; */
    padding: 20px;
    font-size: 20px;
}

h3 {
    margin: 0 0 20px 0;
}

.wrapper {
    /* border: 2px solid green; */
    display: flex;
    flex-flow: column nowrap;
    justify-content: space-between;
    align-items: stretch;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    color: white;
    /* height: 100%; */
}

.row {
    /* border: 1px solid red; */
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    margin: 0 0 10px 0;
}

.check {
    width: 30px;
    height: 30px;
}

.chat-wrapper {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px
    /* border: 1px solid red; */
    /* margin: auto 0 0 0; */
}

.chat-box {
    display: flex;
    flex-flow: column-reverse nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 15px 15px 5px 15px;
    width: 100%;
    color: black;
    height: 150px;
    text-align: left;
    font-size: .8em;
    overflow-y: auto;
}

.chat-box-outer {
    display: flex;
    flex-flow: column nowrap;
    padding: 4px 15px 4px 0;
    background-color: #ccc;
    border-radius: 20px;
}

.chat-input-section {
    display: flex;
    flex-flow: row nowrap;
    margin: 5px 0 0 0;
}

.chat-input-section input,
.chat-input-section button {
    margin: 0 0 0 15px;
}

.chat-input-section input {
    flex: 1;
    height: 25px;
    padding: 2px 5px;
}

.chat-input-section button {
    width: 50px;
    margin: 0 20px 0 10px;
}

.chat-line {
    margin: 0 0 10px 0;
}













@media (min-width: 800px) {
    .check {
        width: 50px;
        height: 50px;
    }

    .wrapper {
        font-size: 1.6em;
    }
}