.question{
  font-size: 20px;
  margin-bottom: 40px;
}
.answers {
  margin-bottom: 10px;
  font-size: 15px;
  text-align: left;
  display: inline-block;
}
.answers label{
  display: block;
  margin-bottom: 10px;
}

button{
  font-family: 'Roboto', sans-serif;
    font-size: 16px;
    background-color: #d43617;
    color: #fff;
    border: 0px;
    border-radius: 3px;
    padding: 20px;
    cursor: pointer;
    margin-bottom: 0px;
}
button:hover{
    background-color: #e43627;
}

.slide{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.5s;
}
.active-slide{
  opacity: 1;
  z-index: 2;
}
.quiz-container{
  position: relative;
  height: 140px;
  margin-top: 20px;
}