@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700&display=swap');



*{
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}


header{
  padding: 1rem 3rem;
  display: flex;
  justify-content: space-between;

  

}
.nav-bar{
  display: flex;
  gap: 3rem;


}
.nav-bar a{
  color: rgb(32, 26, 26);
  font-size: 1.3rem;
  text-decoration: none;
}

.container {
  width: 450px;
  padding: 20px;
  margin-top: 80px;
  background-color: rgb(9, 9, 27);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border-radius: 20px;

}


.container h1 {
  text-align: center;
  color: aqua;
}

.question {
  font-weight: bold;
  margin-bottom: 10px;
  border: 2px solid cyan;
  padding: 30px;
  text-align: center;
  border-radius: 10px 30px;
  color: rgb(248, 244, 244);
  background-color: linear-gradient(rgb(33, 33, 83),rgb(255, 255, 255),rgb(green));

  
}

.options {
  margin-bottom: 20px;
}

.option {
  display: block;
  margin-bottom: 10px;
  border: 0.1px solid  rgb(65, 64, 64);;
  border-radius: 25px;
  padding: 10px;
  color: #fff;
  background-color: rgb(67, 65, 65);


}

.option:hover{
  background-color: aliceblue;
  color: black;


}
.button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #f610e7;
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 16px;
  border-radius: 5px;
  transition: background-color 0.3s;
  margin-right: 10px;
}


.button:hover {
  background-color: #f90808;

}

.result {
  text-align: center;
  margin-top: 20px;
  font-weight: bold;
}

.hide{
  display: none;
}
#result-container p{
  color: #fff;
}



