
@import url("https://uilight.netlify.app/main.css");


*{
    box-sizing: border-box;
    margin: 0;
    padding: 1rem 2rem 1rem 2rem;
}

body{
    background-color: rgb(235, 110, 7);
}

.theme{
    border: 6px solid rgb(255, 255, 255);
    border-radius: 50px;
    
}
#heading{
margin-left: 31rem;
font-size: 2rem;
}

.quiz{
    
    background-color: rgb(255, 174, 0);
    margin-bottom: 5rem;
    margin-left: 21.2rem;
    border-radius: 20px;
    width: 50%;
}

.right-ans{
    background-color: rgb(0, 253, 76);
    color: white;
}

.wrong-ans{
    background-color: rgb(255, 0, 0);
    color: wheat;
}


.hide{
    display: none;
  margin-left: 20rem;

}

.question-container{
    border: 4px solid white;
    border-radius: 25px;
    object-fit: content;
    color: black;
    font-size: 1.2rem;
    font-weight: bolder;
    margin-top: 2rem;
}

.options-container{
    display: flex;
    flex-direction: column;
    border-radius: 25px;
    background-color: rgba(87, 86, 84, 0.486);
    margin-top: 2rem;
    
}

.option-buttons{
    border: 1px solid white;
    border-radius: 25px;
    margin-top: 1rem;
    font-size: 1rem;
    color: black;
    font-size: 1.2rem;
    font-weight: bolder;
}

.cta-button{
    display: flex;
    justify-content: space-between;

}

.bottom-buttons{
    border: 2px solid white;
   border-radius: 25px;
}

.remove-next-button{
    display: none;
}

.score-box{
    border: 4px solid white;
   border-radius: 20px;
   font-weight: bolder;     
  padding-top: 1rem;
  padding-left: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50%;
  margin-left: 21.5rem;
}   

.ques-num{
    margin-left: 12rem;

}

footer{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
#my-icons{
    display: flex;
    justify-content:space-evenly;
    align-items: center;
    font-size: 3rem;
    color: white;
 
}

.naming{
    font-size: 1rem;
}

.show-score{
    font-size: 1.2rem;
}

.bye-message{
    height: 50px;
    font-style: italic;
    margin-left:28.5rem;
}



@media  screen and (max-width:444px){
*{
    padding: 0;
    margin: 0;
}
#heading{
margin-left: 13.5px;
}

.theme{

   width: 95%;
   margin-left: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  
    border:none;

}


.score-box{
    margin-left: 13.5px;
    border-radius:0;

}

.quiz{
    
    background-color: rgb(255, 174, 0);
    margin-bottom: 5px;
    margin-left: 4px;
    margin-top: 8px;
    border-radius:5px;
    width: 87%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    
}

.question-container{
  
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 5px 2px 7px 10px;
    margin: 8px;
    border-radius:5px;
}


.options-container{
    display: flex;
    flex-direction: column;
    border-radius: 5px;
    background-color: rgba(87, 86, 84, 0.486);
    width: 95%;
  
    
}

.option-buttons{
 width:100%;
 border:1px solid white;
 border-radius:5px;
}

.ques-num{
    margin-left: 0.4rem;

}
.bye-message{
    height: 50px;
    font-style: italic;
    margin-left: 10.4px;
}


footer{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
#my-icons{
    display: flex;
    justify-content:space-evenly;
    align-items: center;
    font-size: 2.1rem;
    color: white;
    gap:10px;
 
}

.naming{
    font-size: 1rem;
}
.cta-button{
    display:grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 4rem;
    margin-top: 1rem;
   margin-bottom: 1rem;

}

.bottom-buttons{
    border: 2px solid white;
   border-radius: 5px;
   height: 2.3rem;
   width: 6rem;
}

.remove-next-button{
    display: none;
}

.score-box{
    padding: 10px;
}



}