.title {
    text-align: center;
    font-family: 'Germania One', cursive;
    /* font-family: 'Work Sans', sans-serif; */
    /* font-family: 'Varela Round', sans-serif; */
}

.msg-container {
    width: 300px;
    margin: 0 auto;
    font-family: 'Roboto', sans-serif;
}

#msg-input {
    height: 150px;
    width: 300px;
    resize: none;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    border: 1px solid gainsboro;
    /*padding: 5px;*/
}

.msg-submit {
    background: dodgerblue;
    text-align: center;
    color: white;
    cursor: pointer;
}
.msg-submit:active {
    background: deepskyblue;
}

.input-field {
    width: 300px;
    border-radius: 3px;
    outline: none;
    border: 1px solid gainsboro;
    padding: 5px;
    margin-top: 10px;
}
#debug {
    font-size: 10px;
    position: fixed;
    left: 10px;
    bottom: 10px;
}