* {
    box-sizing: border-box;
}

*:focus {
    outline: none;
}

body {
    margin: 0;
}

#wrapper {
    max-width: 800px;
    height: 100%;
    margin: auto;
}

#messages {
    padding-bottom: 80px;
}

.message-wrapper {
    display: flex;
    margin: 16px;
    margin-bottom: 32px;
}

.you {
    flex-direction: row-reverse;
}

.r2b12 {
    flex-direction: row;
}

.ico-wrapper {
    display: flex;
    flex-direction: column-reverse;
}

.ico {
    border-radius: 16px;
}

.message {
    display: inline-block;
    white-space: pre-line;
    border-radius: 10px;
    padding: 6px 12px;
    margin-left: 12px;
}

.you .message {
    background: #77baec;
}

.r2b12 .message {
    background: #fd7f47;
    color: white;
}
#input-wrapper {
    width: 100%;
    max-width: 800px;
    height: 80px;
    position: fixed;
    bottom: 5px;
    border-top: 2px solid #437193;   
}

#input {
    width: 100%;
    height: 100%;
    border: none;
    padding-left: 8px;
    background-color: #77baec; 
    color: white;
}