body {
  font-family: 'DM Sans', sans-serif;
  margin: 0;
  padding: 0;
  background: #fefef3;
}

.container{
  max-width: 600px;
  margin: auto;
  padding: 4rem 1rem;
}

.container h1, .question{
  text-align: center;
}

plain-icon{
  cursor: pointer;
}

plain-icon i {
  font-size: 2rem;
  color: #b98cf6; /* match your theme */
  justify-content: flex-start;
}


.icon-style{
  font-size: 1.1rem;
}

.icon-smaller-style{
  font-size: 0.9rem;
}

ans-button {
  font-family: 'DM Sans', sans-serif;
  background-color: #fefef3;
  color: #b98cf6;
  border: 1px solid #b98cf6;
  border-radius: 30px;
  width: 90%;
  padding: 1.2rem 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 1.1rem;
  margin: 20px 2px;
  cursor: pointer;
}

ans-button:hover {
  background-color: #eee1ff;
  color: #b98cf6;
}

.answers.left-align ans-button {
  justify-content: flex-start;
  text-align: center;
}

.quiz-button-container{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0.25rem 1rem;
  gap: 1rem;
}
.quiz-button {
  font-family: 'DM Sans', sans-serif;
  background-color: #fefef3;
  color: #b98cf6;
  border: 1px solid #b98cf6;
  border-radius: 30px;
  width: 65%;
  padding: 0.4rem 0rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 1.1rem;
  cursor: pointer;
}

.quiz-button:hover{
  background-color: #eee1ff;
  color: #b98cf6;
}

.smaller-quiz-button{
  width: 30%;
}

.result {
  margin-top: 1rem;
  font-size: 1.1rem;
  justify-content: center;
}


@media (max-width: 768px) {

  .container{
    padding: 7rem 1rem;
  }

  .question{
    padding: 0 1.5rem;
  }

  .answers{
    padding-left: 1rem;
  }

  ans-button {
    width: 75%;
  }

  .answers.left-align ans-button {
    justify-content: flex-start;
    text-align: center;
  }

  .quiz-button-container{
    gap: 1rem;
  }

  .quiz-button {
    width: 100%;
  }

  .smaller-quiz-button{
    width: 40%;
  }
  plain-icon i {
    padding-left: 1.5rem;
  }
}

