@import url(https://fonts.googleapis.com/css?family=Work+Sans:300,600);

body {
  font-size: 19px;
  font-family: 'Brandon Grotesque', sans-serif;
  color: #212020;
  font-weight: 300;
  text-align: center;
  background: url('../images/backdash.png') no-repeat center center fixed;
  background-size: cover;
  margin: 0;
  padding: 0;
}

h1 {
  font-weight: 300;
  margin: 0;
  padding: 20px;
  font-size: 30px;
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
}

.question {
  font-size: 30px;
  margin-bottom: 10px;
  color: #212020;
}

.answers {
  margin-bottom: 20px;
  text-align: left;
  display: inline-block;
}

.answers label {
  display: block;
  margin-bottom: 15px;
}

button {
  font-family: 'Brandon Grotesque', sans-serif;
  font-size: 15px;
  background-color: #fff;
  color: #212020;
  border: 0px;
  border-radius: 20px;
  padding: 10px 20px;
  cursor: pointer;
  margin-bottom: 20px;
  margin-top: 20px;
  transition: background-color 0.3s;
}

button:hover {
  background-color: #e5acac;
}

.slide {
  display: none;
}

.active-slide {
  display: block;
}

.quiz-container {
  position: relative;
  height: auto;
  margin-top: 40px;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 10px;
}
