

ul.qanda {
  list-style: none;
  margin: 0;
  padding: 0;
}

ul.qanda li{
  display:inline-block;
  clear: both;
  padding: 5px;
  border-radius: 20px;
  margin-bottom: 2px;
  font-family: Helvetica, Arial, sans-serif;
  max-width: 60%;
}

.question{
  background: grey;
  float: left;
  /* color: orange; */
  color: white;
}

.answer{
  float: right;
  background: orange;
  /* color: grey; */
}

:first-of-type.question{
  border-top-left-radius: 0px;  
}

.answer.first {
  border-top-right-radius: 0px;  
}
/*
.question + .answer{
  border-bottom-right-radius: 5px;
}
*/
/*
.answer + .answer{
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}
*/
.question.last {
  border-bottom-left-radius: 0px;  
}

:last-of-type.answer {
  border-bottom-right-radius: 0px;  
}