* {
  font-family: "Kanit", sans-serif;
}

body {
  background-image: linear-gradient(to right, #4d94d1, #e8b5d2);
  font-family: "Kanit", sans-serif;
}

.container {
  max-width: 70%;
  margin-top: 50px;
}

.container img {
  width: 30%;
}

#surveyContainer {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

#questionText {
  margin-bottom: 20px;
}

.form-check-inline {
  margin-right: 10px;
}

.form-check-input {
  width: 25px;
  height: 25px;
}

.form-check-label {
  font-size: 18px;
  margin-left: 10px;
}

.btn-primary,
.btn-secondary {
  border-color: transparent;
  border-radius: 30px;
  font-size: 16px;
  padding: 10px 20px;
  transition: transform 0.3s, background-color 0.3s;
}

.btn-primary {
  background: linear-gradient(to right, #308efa, #e8b5d2);
}

.btn-primary:hover {
  transform: scale(1.02);
}

.btn-secondary {
  width: 50%;
  background: linear-gradient(to right, #308efa, #308efa, #e8b5d2);
  color: #ffffff;
  display: block;
  margin: 10px auto;
  text-align: center;
}

.btn-secondary:hover {
  background-color: #2bcab7;
  transform: scale(1.05);
}

.number-text {
  font-size: 1.3em; /* ปรับขนาดตามที่ต้องการ */
  font-weight: bold; /* ทำให้ตัวเลขหนาขึ้น */
}

@media (max-width: 768px) {
  .container {
    max-width: 95%;
    margin-top: 50px;
  }

  .container h3 {
    font-size: 24px;
  }

  .container img {
    width: 60%;
  }

  .btn-secondary {
    width: 80%;
    background: linear-gradient(to right, #308efa, #308efa, #e8b5d2);
    color: #ffffff;
    display: block;
    margin: 10px auto;
    text-align: center;
  }
}




