body {
  background-color: #65524D;
}

.header-container {
  display: flex;
  align-content: center;
  justify-content: center;
  background-color: #04f7a6;
  margin-bottom: 1%;
  font-size: 1.5vw;
  cursor: pointer;
}

.topic-container {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.content-item {
  display: flex;
  align-content: space-between;
  flex-direction: row;
  justify-content: left;
  background-color: #FFEE88;
  margin-bottom: 0.25%;
  flex-grow: 1;
  order: 0;
}

.content-item-image {
  order: 1;
  margin: 1%;
  padding: 1%;
  flex-grow: 1;
  flex-basis: 0;
  cursor: pointer;
}

.content-item-title {
  order: 0;
  margin: 1%;
  padding: 1%;
  flex-grow: 1;
  text-align: center;
  align-self: center;
  font-size: 2vw;
  flex-basis: 0;
  cursor: pointer;
}

.content-item-comment-link {
  order: 2;
  margin: 1%;
  padding: 1%;
  flex-grow: 1;
  text-align: center;
  align-self: center;
  font-size: 2vw;
  flex-basis: 0;
  cursor: pointer;
}

.comment-pane {
  background-color: #65524D;
  flex-grow: 1;
  min-width: 100%;
  max-height: 75vh;
  margin-bottom: 0.5%;
  overflow: scroll;
  display: flex;
  flex-direction: column;
  border-style: solid;
  border-width: thick;
}

.comment-body {
  background-color: #B5BEC6;
  color: black;
  font-size: 1.75em;
  font-weight: 400;
  padding: 2%;
  margin-bottom: 1%;
  display: flex;
}

.comment {
  width: 85%;
  cursor: pointer;
}

.prev-comment {
  min-width: 100%;
}

.prevd {
  background-color: #b2f7ff;
}

.comment-entry-area {
  width: 85%;
  box-sizing: border-box;
  border-radius: 4px;
  margin-right: 3%;
  font-size: 1.75em;
}

.comment-pane-controls {
  background-color: #B5BEC6;
  margin-bottom: 1%;
}

.comment-button {
  width: 10%;
  margin-right: 2%;
  font-size: 1.75em;
  font-weight: 400;
}

.selected {
  border-style: solid;
  border-width: thick;
  background-color: #baebff;
}

.content-container {
  display: flex;
  background-color: #65524D;
  align-content: center;
  justify-content: center;
  flex-direction: column;
}

.comment-entry {
  order: 0;
  margin: 1%;
}

.comment-tray {
  order: 1;
  margin: 1%;
}

.up-button {
  align-content: center;
  justify-content: center;
  text-align: center;
  font-size: 3em;
  font-weight: 600;
  background-color: gold;
  cursor: pointer;
}

.has-replies-indicator {
  flex-grow: 1;
  cursor: pointer;
}

.has-replies {
  background-color: black;
  text-align: center;
  color: gold;
}

.image-container {
  margin: 2%;
}
