html {
  box-sizing: border-box;
}
*,
*:before,
*:after {
  box-sizing: inherit;
}
body {
  margin: 0;
  padding: 0;
  font-family: "Roboto", sans-serif;
  font-weight: 100;
  line-height: 1.7rem;
  background: no-repeat linear-gradient(250deg, pink, purple);
}
h1,h2,h3 { line-height:100%;}
.quiz-container {
  box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.2);
  text-shadow: 1px 1px white;
  padding: 3rem;
  text-shadow: 0 1px #00000010;
  width: 50%;
  min-width:400px;
  margin: 5rem auto;
  display: flex;
  flex-direction: column;
  background: linear-gradient(360deg, transparent, #ffffff);
  min-height: 100vh;
}
.title {
  margin-top: 0;
  margin-bottom: 3rem;
  color: #000;
  font-weight: 400;
  font-size: 1.5rem;
  text-align: center;
  text-transform: uppercase;
  line-height:100%;
}
.question {
  margin: 2rem 0;
  font-size: 1.5rem;
  
}
.option {
  padding: 1rem;
  color: #00000095;
  background: rgba(255, 255, 255, 0.1);
  width: 100%;
  border-radius: 5px;
  transition: all 0.3s;
  margin-bottom: 7px;
}
.option:hover {
  background: rgba(255, 255, 255, 0.4);
  cursor:pointer;
}
.option input:checked .option {
  background: #08038c;
  color: #000;
}
.controls > * {
  margin: 1rem;
}
button, .btn {
  padding: 0.5rem 1.5rem;
  border: none;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  font-weight: 300;
  color: white;
  outline: none;
  transform: scale(0.98);
  transition: all 0.2s;
}
button.previous {
  background: none;
  box-shadow: none;
}
button.next {
  background: #3c91e6;
}
button.restart {
  background: #0cf574;
  color: #00000050;
  font-size: 2rem;
  margin-bottom: 1rem;
  transition: all 0.4s;
}
button.restart:hover {
  color: #00000098;
}
button:hover,
button:focus,
.btn:hover,
.btn:focus {
  transform: scale(1);
  font-weight: 500;
  box-shadow: 1px 1px 1px rgba(255, 255, 255, 0.5);
  cursor:pointer;
}
.result {
  display: flex;
  flex-direction: column;
  padding: 2rem;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 2.5rem;
  /*min-height: 100vh;*/
}
.final-score {
  color: #00000099;
}
.summary {
  font-size: 1rem;
  /*text-shadow: 1px 1px #ffffff50;*/
  color: #000;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 2rem;
  margin-bottom: 2rem;
  text-align:left;
}
.summary h1 {
  align-self: center;
}
footer {
	text-align:center;
}