body {
    box-sizing: border-box;
    margin: 0;
    padding: 13px;
    display: flex;
    flex-direction: column;
    max-height: 100vh;
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: #36393f;
  }

.members-count,
.messages {
    border: 1px solid white;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 20px;
  }


.message .member {
    display: inline-block;
}

.member {
    padding-right: 10px;
    position: relative;
}

.messages {
    flex-shrink: 1;
    overflow: auto;
    height: 400px;
  }

.message {
    padding: 5px 0;
  }

.side {
    padding-left: 50px;
    padding-right: 50px;
    padding-top: 2%;
}

.members-count {
    display: flex;
    justify-content: center;
}

.message-form__button {
    border: 1px solid white;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 20px;
}

.message-form__input {
    border: 1px solid white;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 20px;
    margin-right: 20px;
}

.message-form {
    display: flex;
    justify-content: space-between;
}

@media only screen and (min-width: 1000px) {
    .message-form__input {
        min-width: 700px;
    }

    .message-form__button {
        width: 100px;
    }
}