body {
  background-image: radial-gradient(#18121E, #233237);
  text-align: center;
  overflow-x: hidden;
}

#discussionTitleDiv {
  margin-top: 100px;
  width: 100vw;
  height: 100px;
  text-align: center;
}

#discussionTitleHeader {
  color: rgba(255, 255, 255, 1);
  font-weight: 100;
  font-size: 75px;
}

#discussionSummaryCenteringDiv {
  margin-top: -10px;
  display: inline-block;
  width: 75vw;
}

#discussionSummaryDiv {
  width: 75vw;
  height: auto;
  display: table;
}

#summaryText {
  text-align: left;
  color: white;
  font-weight: 100;
  font-size: 20px;
  line-height: 30px;
}

#addToDiscussionButtonCenteringDiv {
  width: 100vw;
  height: 50px;
  background: none;
  text-align: center;
}

#addToDiscussionButtonDiv {
  display: inline-block;
  border-radius: 50px;
  height: 50px;
  width: 25vw;
  background: rgba(255, 255, 255, 1);
}

#addToDiscussionButton {
  border: none;
  border-radius: 50px;
  height: 50px;
  width: 25vw;
  color: #003d99;
  font-size: 20px;
  font-weight: 200;
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.3);
  background: white;
}

#addToDiscussionButton:focus {
  outline: none;
}

#addToDiscussionButton:hover {
  background: #cce0ff;
}

.responseCenteringDiv {
  margin-top: 20px;
  margin-bottom: 100px;
  width: 100vw;
  height: 500px;
  background: none;
  text-align: center;
}

.responseDiv {
  display: inline-block;
  width: 75vw;
  height: 430px;
  border-radius: 25px;
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.3);
  background: white;
}

.topSectionDiv {
  width: 75vw;
  height: 100px;
  display: flex;
}

.responseTitleDiv {
  flex: 1;
  padding: 1em;
  text-align: left;
  margin-left: 12.5px;
}

.responseTitle {
  color: black;
  font-size: 50px;
  font-weight: 100;
}

.responseAuthor {
  margin-top: -10px;
}

.votingButtonsDiv {
  margin-top: 10px;
  padding: 1em;
  width: 180px;
  display: flex;
}

.upvoteButtonDiv {
  width: 65px;
  height: 65px;
  margin-right: 20px;
}

.upvoteButtonDiv:hover {
  opacity: .7;
}

.downvoteButtonDiv {
  width: 65px;
  height: 65px;
}

.downvoteButtonDiv:hover {
  opacity: .7;
}

.voteButton {
  background: none;
  border: none;
}

.voteButton:focus {
  outline: none;
}

.mainResponseDiv {
  margin-top: 10px;
  margin-left: 20px;
  margin-right: 20px;
  background: rgba(35, 50, 55, 0.1);
  height: 300px;
  width: auto;
  border-radius: 10px;
  overflow: scroll;
  overflow-x: hidden;
}

.mainResponseText {
  text-align: left;
  margin-left: 20px;
  margin-right: 20px;
  padding-top: 10px;
  margin-bottom: 10px;
}

#postCreatorBackgroundDiv {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  position: fixed;
	top: 0;
  display: none;
	justify-content: center;
	align-items: center;
}

#postCreatorFrameDiv {
  width: 75vw;
  height: 75vh;
  background: white;
  border-radius: 25px;
  text-align: center;
}

#postCreatorTitleDiv {
  height: 10vh;
  width: 73vw;
  background: rgba(35, 50, 55, 0.1);
  margin-top: 15px;
  border-radius: 15px;
  display: inline-block;
}

#postCreatorTitleInput {
  border: none;
  background: none;
  height: 10vh;
  width: 65vw;
  margin-left: 15px;
  font-size: 25px;
  float: left;
}

#postCreatorTitleInput:focus {
  outline: none;
}

#postCreatorTextDiv {
  height: 48vh;
  width: 73vw;
  background: rgba(35, 50, 55, 0.1);
  margin-top: 10px;
  border-radius: 15px;
  display: inline-block;
  overflow: scroll;
  overflow-x: hidden;
}

#postCreatorTextInput {
  height: 48vh;
  width: 73vw;
  background: none;
  border: none;
  margin-left: 15px;
  margin-top: 7.5px;
}

#postCreatorTextInput:focus {
  outline: none;
}

#postCreatorButtonsDiv {
  width: 350px;
  height: 50px;
  margin-top: 7.5px;
  margin-right: 15px;
  margin-left: auto;
  display: flex;
}

#cancelPostCreationDiv {
  flex: 1;
}

#submitPostCreationDiv {
  flex: 1;
  color: black
}

#cancelPostCreationButton {
  width: 160px;
  height: 50px;
  border-radius: 50px;
  border-width: 2px;
  color: white;
  background: rgba(255, 0, 0, 0.6);
}

#cancelPostCreationButton:focus {
  outline: none;
}

#submitPostCreationButton {
  width: 160px;
  height: 50px;
  border-radius: 50px;
  border-color: green;
  border-width: 2px;	
  color: white;
  background: light green;
}

#submitPostCreationButton:focus {
  outline: none;
}
