*{
  margin:0;
  padding:0;
  box-sizing: border-box;
  outline: none;
  transition: .5s;
}

i:hover {
  opacity: .8;
  transform: scale(1.5, 1.5);
}

body{
  background-image: url(./image/white-wooden-door-1475234.jpg);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 2rem;
  min-height: 100vh;
  opacity: 1;
}

.header h2{

  width: 100%;
  padding: 0rem;
  color: white;
  margin-top: 0;font-size: 2.5rem;
  margin-bottom: 0rem;
}
h4{
  text-align: center;
  font-size: 1.8rem;
  margin-top: 1rem;
}
.quiz-wrapper{
  height: 530px;
  max-width: 600px;
  min-width: 100px;
  background-color: white;
  margin: 30px auto;
  border-radius: 8px;
  padding:25px;
  margin-top: 2rem;
}

.quiz-wrapper .question{
  min-height: 50px;
  border-bottom: 1px solid grey;
  color: black;
  padding: 15px;
  float: left;
  width: 100%;
  font-size: 25px;
}

.quiz-wrapper .options{
  float: left;
  width: 100%;
}

.quiz-wrapper .options ul{
  list-style: none;
  padding: 0%;
  display: block;

}

.quiz-wrapper .options ul li{
  display: inline-block;
  background-color: grey;
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  margin: 10px 0 30px;
  color:white;
  cursor: pointer;
}
.quiz-wrapper .options ul li:hover{
  background: blue;
}

.quiz-wrapper .options ul li.correct{
  background-color: green;
  box-shadow: 0px 3px 0px grey;
}

.quiz-wrapper .options ul li.wrong{
  background-color: red;
  box-shadow: 0px 3px 0px grey;
}

.quiz-wrapper .options ul li:active{
  box-shadow: 0px 0px 0px  rgb(84, 110, 179);
}

.quiz-wrapper .score {
  float: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
  width: 100%;
}


.quiz-wrapper .score .next button{
  padding: 0.5rem 1.4rem 0.5rem 1.4rem;
  color: white;
  background-color:blue;
  border: none;
  border-radius: 3px;
}

.quiz-wrapper .score .next button:hover{
  cursor: pointer;
  background: grey;
}

.quiz-wrapper .score .score-card{
  
  line-height: 40px;
  font-size: 20px;

}

.quiz-wrapper .score .score-card span{
  background-color: rgb(12, 88, 29);
  padding: 5px 20px;
  border: none;
  color:white;
  border-radius: 8px;
  margin-top: 3rem;
}
h5{
  color:white;
  text-align: center;
  font-size: 1rem;
}
.social-icons{
  display: flex;
  max-width: 250px;
  width: 100%;
  justify-content:space-between ;
}

.social-icons a{
  color: white;
  font-size: 2rem;
}

@media only screen and (max-width:400px){
  .quiz-wrapper .score {
    margin-top: -0.5rem;
  }
  .quiz-wrapper .options ul li{
      margin-top: -0.2rem;
  }
  .quiz-wrapper .options ul li{
    margin-top: 0.5rem;
    line-height: 0.5rem;
    padding: 15px;
  }
}
