﻿html, body{
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: sans-serif;
  background-color: #2c3e50;
}

h1, h2, h3, h4, h5, h6{
  font-weight: 200;
}

input{
  margin: 20px auto;
  padding: 8px 10px;
  border: none;
  outline: none;
}

button{
  padding: 8px 20px;
  background-color: #2ecc71;
  color: #fff;
  border: none;
  cursor: pointer;
}

.addQuestions, h1{
  margin: 40px auto;
  text-align: center;
  color: #fff;
}

.info{
  text-align: center;
}

.info li{
  list-style-type: none;
  color: #fff;
}

.info button{
  margin: 30px 0;
  -webkit-appearance: none;
   -moz-appearance: none;
   appearance: none;
}

.questionsWrapper div{
  display: none;
  position: absolute;
}

.questionsWrapper div.is-active{
  display: block;
}

.questionDiv{
  margin: 20px auto;
  text-align: center;
  width: 100%;
}

.questionDiv li{
  list-style-type: none;
  color: #fff;
  padding: 12px 0;
}

.questionDiv li.correct, .questionDiv li.wrong{
  cursor: pointer;
}

.answersCorrect{
  color: #fff;
  text-align: center;
}

.nextButton{
  margin: 20px auto;
}
