* {
    margin: 0;
    box-sizing: border-box;
  }
  #head {
    height: 54px;
    width: 1450px;
    background-color: rgb(57, 66, 66);
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  #btn1 {
    margin-right: 24px;
    height: 32px;
    width: 120px;
    font-size: large;
    background-color: rgb(26, 156, 156);
    cursor: pointer;
    color: aliceblue;
    border: none;
  }
  #photo {
    height: 200px;
    margin-top: 60px;
    margin-left: 30px;
  }
  #container {
    display: flex;
  }
  #main_deading {
    margin-top: 60px;
    margin-left: 44px;
  }
  .abcd {
    height: 44px;
    width: 640px;
    gap: 24px;
  }
  #select_catagory {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-left: 184px;
  }
  #timer {
    height: 24px;
    width: 60px;
    display: flex;
    flex-direction: row;
    gap: 20px;
  }
  #btn2 {
    height: 60px;
    width: 180px;
    background-color: rgb(58, 189, 145);
    font-size: 26px;
    color: white;
    cursor: pointer;
    border: none;
  }
  
  .flex {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .wrapper {
    padding: 3rem 4rem;
    width: 600px;
    height: 680px;
    border: 1px solid black;
    margin-top: 10px;
  }
  
  .quiz-score {
    text-align: right;
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 1rem;
  
    font-weight: bold;
    width: 100px;
    height: 50px;
    margin: 0.5rem auto 1rem auto;
  }
  .quiz-question {
    font-size: 1.2rem;
    text-align: center;
    line-height: 1.3;
    margin-bottom: 2rem;
  }
  .quiz-question .category {
    font-size: 0.9rem;
    font-weight: 500;
  
    padding: 0.2rem 0.4rem;
    border-radius: 0.2rem;
    margin-top: 0.5rem;
    display: inline-block;
  }
  .quiz-options {
    list-style-type: none;
  }
  .quiz-options li {
    border-radius: 0.5rem;
    font-weight: 600;
    margin: 0.7rem 0;
    padding: 0.4rem 1.2rem;
    cursor: pointer;
    border: 2px solid black;
    background-color: whitesmoke;
    color: black;
  }
  .quiz-options li:hover {
    background-color: rgb(161, 185, 75);
    
  }
  
  
  .quiz-foot button {
    border: none;
    border-radius: 0.5rem;
    outline: 0;
  
    font-size: 1.2rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    margin: 0 auto 0 auto;
  
    cursor: pointer;
    display: block;
    background-color: rgb(52, 52, 184);
    color: wheat;
  }
  .quiz-foot button:hover {
    background-color: #2a7dac;
  }
  
  #play-again {
    display: none;
  }
  #result {
    padding: 0.7rem 0;
    text-align: center;
    font-weight: 600;
    font-size: 1.3rem;
  }