body{
    background-color: antiquewhite;
    color:  white;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}
#setup{
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;

}
#setup button{
    width: 150px;
    
}
#left-arrow{
    cursor: pointer;
    font-size: 50px;
    margin-left: 60px;
}
#right-arrow{
   cursor: pointer;
    font-size: 50px;
    float: right;
    margin-right: 60px;
}
#arrow{
    display: flex;
    justify-content: space-between;
}
#setup h1{
color: black;
}
#Quiz-wrapper{
    background-color: black;
    width: 450px;
    margin: 55px auto;
    
}
p{
    text-align: center;
    font-weight: 600;
}
h1{
    text-align: center;
    padding: 20px 0 0 0;
}
h6{
    text-align: center;
    padding: 20px 0;
    font-size: 20px;
}
h2{
    font-size: 15px;
    padding-left: 20px;
}
button{
  padding: 10px 20px; 
  font-size: 15px; 
  font-weight: bolder;
  /* margin-left:20px ; */
  margin-bottom: 20px;
  margin-top: 20px;
}
.option{
    font-size: 20px;
    display: block;
    margin-top: 20px;
    margin-left:20px ;
    padding-bottom: 10px;
}
#display-value{
    display: flex;
    align-items: center;
    justify-content: space-between;
  height: 70px;
  padding: 0 20px;

}
#score{
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-size: 25px;
    margin-right: 30px;
}
#display-result{
    background-color: white;
    color: black;
    height: 200px;
    text-align: center;
}
.hide{
    display: none;

}
.show {
    display:  block;
}
#btn-wrapper{
   
    width: 300px;
    margin:  0 auto;
}
.incorrect-question{
    margin-left: 20px;
}
.wrong-answer{
    margin-left: 20px;
}

.animationvalue{
animation: ani;
animation-duration: 1s;
animation-iteration-count: infinite;
color: red;
}

@keyframes  ani {
   0%{
    opacity: 0.3;
   } 
   100%{
 opacity: 1;
   }
}

@media screen and (min-width:380px) {
    #Quiz-wrapper{
       
        width: 320px;
    }
    #setup{
        width: 300px;
      
    }

    h6{
        font-size: 15px;
    }
    #setup h1{
      font-size: 15px;
        }
}


@media screen and (min-width:600px) {
    #Quiz-wrapper{
       
        width: 500px;
    }

    
    h6{
        font-size: 15px;
    }
    #setup{
        width: 500px;
        
    }
    #setup h1{
      font-size: 20px;
        }
}

@media screen and (min-width:768px) {
    #Quiz-wrapper{
       
        width: 600px;
    }

    h6{
        font-size: 15px;
    }
    #setup{
        width: 600px;
       
    }
    #setup h1{
      font-size: 20px;
        }
}

@media screen and (min-width:992px) {
    #Quiz-wrapper{
       
        width: 700px;
    }

    h6{
        font-size: 15px;
    }
    #setup{
        width: 600px;
       
    }
    #setup h1{
      font-size: 20px;
        }
}
