* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
#wrapper {
  display: flex;
  height: 100vh;
  width: 100vw;
  justify-content: center;
  align-items: center;
  background-color: rgb(242, 244, 245);
}
.questions {
  width: 45%;
  height: 60%;
  /* border: 2px solid black; */
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
}
.question {
  /* border: 2px solid black; */
  margin: 20px;
  background-color: white;
  padding: 10px;
  border-radius: 6px;
}
.question-title {
  display: flex;
  justify-content: space-between;
  font-size: 1.3rem;
  width: 650px;
  letter-spacing: 3px;
  padding: 0.5rem;
  color: rgb(81, 81, 122);
  font-weight: bold;
}

.title h2 {
  text-align: center;
  color: rgb(81, 81, 122);
  font-size: 1.8rem;
  text-shadow: 1.5px 1.5px 2.5px black;
  letter-spacing: 5px;
  margin-bottom: 30px;
}
.title h2 span {
  color: rgb(57, 181, 223);
}
/* hide functionality */
.question-text {
  display: none;
}
.minus-icon {
  display: none;
}
.show-text .question-text {
  display: block;
}
.show-text .minus-icon {
  display: inline;
}
.show-text .plus-icon {
  display: none;
}
.question-btn {
  background: transparent;
  border: transparent;
  font-size: 1.3rem;
  color: rgb(81, 81, 122);
  cursor: pointer;
  transition: 0.3s all linear;
}
.question-btn:hover {
  transform: scale(1.2);
  color: rgb(31, 32, 33);
}
.question-text {
  /* padding: 1rem 0 1.5rem 0; */
  padding: 1.2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}
.question-text p {
  color: rgb(81, 81, 122);
  letter-spacing: 1.5px;
}
