@media (max-width: 1300px) {
  .content {
    width: 60%;
  }

  .report {
    width: 70%;
    height: 80vh;
    gap: 20px;
  }
}

@media (max-width: 970px) {
  .content {
    width: 100%;
  }

  .report {
    width: 90%;
  }
  .report h1 {
    font-size: 55px;
  }
}

@media (max-width: 576px) {
  .content h1 {
    font-size: 40px;
    font-weight: 500;
  }

  .content .form input {
    margin: 5px auto;
  padding: 15px 6px;
    width: 100%;
  }

  .content .form input::placeholder {
  color: aliceblue;
  font-size: 14px;
  text-align: center;
}

  .quizContainer {
    width: 100%;
    max-width: 700px;
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .quizHeader {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .quizHeader p {
    font-size: 20px;
    padding: 0 10px;
    gap: 8px;
  }

  .quizQuestion {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .quizQuestion .quizTitle {
    font-size: 25px;
    margin: 10px 15px;
  }

  .quizQuestion #question {
    font-weight: 600;
    font-size: 20px;
  }

  .quizQuestion ul li {
    padding: 8px;
    font-weight: 600;
    font-size: 15px;
  }
  .report {
    width: 100%;
  }

  .report h1 {
    font-size: 35px;
  }

  .report h3 {
    font-size: 25px;
    font-weight: 600;
  }
}
