
body {
  font-family: 'Poppins';
  font-size: 18px;
  background: #fff;
  line-height:26px;
}

h1 {
 font-family: 'Poppins';
font-weight: 700;
font-style: normal;
color: #000000;
  font-size: 32px;
  
}

h3{
  font-family: 'Poppins';
  font-weight: 600;
  color: #000000;
  font-size: 20px;
}

h6{
  font-family: 'Poppins';
  font-weight: 600;
  color: #000000;
  font-size: 20px;
}

.content {
  width: 80%;
  padding: 20px;
  margin: 0 auto;
  padding: 0 0 0 0;
  margin-top: 30px;
}

.centerplease {
  margin: 0 auto;
  max-width: 270px;
  font-size: 40px;
}

.question {
  color: #fff;
  position: relative;
  background: #ff0000;
  margin: 0;
  padding: 10px 10px 10px 50px;
  display: block;
  width:100%;
  cursor: pointer;
  border-radius:;
}

h3 {
  margin-top: 10px;
  margin-bottom: 10px;
}

.answers {
  font-weight:300;
  background: #f2f2f2;
  padding: 0px 15px;
  margin: 0px 0;
  height: 0;
  overflow: hidden;
  z-index: -1;
  position: relative;
  opacity: 0;
  -webkit-transition: .7s ease;
  -moz-transition: .7s ease;
  -o-transition: .7s ease;
  transition: .7s ease;
}

.ques:checked ~ .answers{
  height: auto;
  opacity: 1;
  padding: 15px;
}

.plus {
  color:#fff;
  position: absolute;
  margin-left: 10px;
  margin-top: 5px;
  z-index: 5;
  font-size: 2em;
  line-height: 100%;
  -webkit-user-select: none;    
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  -webkit-transition: .3s ease;
  -moz-transition: .3s ease;
  -o-transition: .3s ease;
  transition: .3s ease;
}

.ques:checked ~ .plus {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

.ques {
  display: none;
}