/*for timed quiz */
/*divide header into 3 */
header {
    background-color:#ff4000;
    color: #fff;
    text-align: center;
    padding: 20px;

}

        header {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .left-section {
            flex: 1; /* Take up available space */
            text-align: left;
}
	.middle-section {
		flex: 1; /* Take up available space */
            text-align: center;


        }

        .right-section {
            flex: 1; /* Take up available space */
            text-align: right;
        }
    

body {
      font-family: 'Arial', sans-serif;
      background-color: #f4f4f4;
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

.ques-title .nm {
  margin-right: 8px; /* Adjust the value according to your preference */
}


    .question-box {
      background-color: #fff;
      border: 5px solid #ddd;
      border-radius: 8px;
      padding: 20px;
      margin-bottom: 20px;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

.ques-title .nm {
  font-weight: bold; /* Make the question number bold */
  color: #3366cc; /* Set a different color for the question number */
  margin-right: 8px; /* Adjust the value according to your preference */
}


    .ques-title {
      font-size: 18px;
      font-weight: bold;
      margin-bottom: 10px;

    }

    .answer-list {
      list-style-type: none;
      padding: 0;
    }

    .choose-answer li {
      margin-bottom: 10px;
    }

    #timer, button, #results {
      text-align: center;
      margin-top: 20px;
    }

    button {
      padding: 10px 20px;
      font-size: 16px;
      background-color: #4caf50;
      color: #fff;
      border: none;
      border-radius: 5px;
      cursor: pointer;
    }

    #results {
      background-color: #fff;
      border: 1px solid #ddd;
      border-radius: 8px;
      padding: 20px;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }
/* Adjust styles for smaller screens */
@media (max-width: 768px) {
    .thumbnail {
        width: 100%; /* Set width to 100% on smaller screens */
}
}

footer {
font-weight: bold;
font-size: 18px;
    background-color: #ff4000;
    color: #fff;
    text-align: center;
    padding: 20px;
a {
  color: white;


}

.contact-info {
    margin-bottom: 20px;
}

.copyright {
    font-size: 0.9em;
}