*{
    box-sizing:border-box;
}

#form{
    background:#fff;
}

.container {
  position: relative;
  display: inline-block;
}
.container img {
  width: 100%;     /* ảnh sẽ co theo chiều rộng container */
  max-width: 600px;
  height: auto;    /* giữ đúng tỷ lệ */
  display: block;  /* bỏ khoảng trống mặc định */
  border-radius: 8px; /* tuỳ chọn, bo góc */
}

.answers {
  font-family:  "SimKai", "Noto Serif SC","LXGW WenKai","STKaiti", "KaiTi", serif; 
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  -webkit-text-stroke: 5px #fff; /* chỉ viền */
  paint-order: stroke fill; /* Vẽ viền trước, tô màu chữ sau */  
}
.answer {
  font-family: "SimKai", "Noto Serif SC","LXGW WenKai","STKaiti", "KaiTi", serif; 
  bottom: 5%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px 0;
  font-size: 30px;
  font-weight: bold;
  -webkit-text-stroke: 5px #fff; /* chỉ viền */
  paint-order: stroke fill; /* Vẽ viền trước, tô màu chữ sau */
}
.answer span.option {
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: gold;
  color: red;
  text-align: center;
  line-height: 40px;
  margin-right: 10px;
  font-weight: bold;
}
.answer span.option {
  font-size: 30px;   /* 👈 size cố định */
  width: 40px;
  height: 40px;
  line-height: 40px;
}
.htagbg{
  position: absolute;
  top: 1%;
  left: 80%;
  transform: translateX(-50%);
  width: 90%;
  z-index: 1;
  -webkit-text-stroke: 13px #fff; /* chỉ viền */
}

.htag {
  position: absolute;
  top: 1%;
  left: 80%;
  transform: translateX(-50%);
  width: 90%;
  z-index: 2;
}
.buttons{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:8px;
    margin-top:16px;
}
.buttons button{
    background:#1976d2;
    color:white;
    border:none;
    border-radius:8px;
    padding:8px 18px;
    font-size:16px;
    cursor:pointer;
    transition:.2s;
}
.buttons button:hover{
    background:#0d5cb6;
}

@media(max-width:900px){
.form-row{
    display:block;
}
.form-row label{
    display:block;
    width:100%;
    margin-bottom:6px;
}
.question{
    font-size:26px;
}
.answer{
    font-size:22px;
}
}