
  #user-container {
    background-color: rgb(3,125,229);
    display: flex;
    flex-direction: row;
    top: 22px;
    width: 100%;
    height: 50px;
    justify-content: center;
    align-items: center;
  }

  #user-container #user-pic {
    position: relative;
    display: inline-block;
    background-image: url('/img/profile_placeholder.png');
    background-repeat: no-repeat;
    width: 30px;
    height: 30px;
    background-size: 30px;
    border-radius: 15px;
  }

  #user-container #user-name {
    font-size: 15px;
    padding-right: 8px;
    padding-left: 8px;
    color: white;
  }

.message-container {
  border-bottom: 1px solid #ddd;
}

.name {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 4px;
  margin-left: 16px;
}

.comment {
  border-bottom-style: solid;
  border-bottom-color: black;
  border-bottom-width: 1px;
  width: 50%;
  margin-bottom: 16px;
  margin-left: 16px;
  font-family: 'Work Sans', sans-serif;
}

.text {
  font-size: 15px;
  color: #23292B;
  margin-bottom: 32px;
  margin-left: 16px;
}

.commentList {
   margin-top: 32px;
}

  @media screen and (max-width: 610px) {
    #user-container {
      background-color: rgb(3,155,229);
      padding-top: 3px;
      padding-right: 2px;
    }
    #user-container #user-pic {
      top: 2px;
      width: 30px;
      height: 30px;
      background-size: 30px;
    }
  }