@import "./header.css";
@import "./footer.css";

*{
  box-sizing: border-box;
}
body{
  margin: 0;
  padding: 0;
  font-family: 'Noto Sans TC', sans-serif;
}
img{
  max-width: 100%;
}
 

div.question_block{
  width: 1080px;
  margin: 30px auto 60px;
  background: rgba(238, 238, 238, 0.8);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 0 60px;
}

div.question_container{
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  width: 80%;
}

div.leftside{
  width: 60%;
  letter-spacing: 0.1em;
  padding-left: 1em;
}

div.question_title{
  font-size: 28px;
  font-weight: 700;
  padding: 1em 0;
}

div.question_text{
  line-height: 190%;
  padding-bottom: 20px;
  font-size: 16px;
}

form{
  width: 100%;
}

button.btn_next{
  border: none;
  background: #2869D1;
  border-radius: 6px;
  color: white;
  padding: 6px 18px 8px;
  margin-top: 10px;
  font-size: 16px;
}

button.btn_next:hover{
  box-shadow: 1px 2px 2px 0px #00000040;
}

button.btn_next:focus{
  border: none;
  outline: none;
}

button.btn_next:active{
  border: none;
  outline: none;
}

a.next_page{
  text-decoration: none;
  background: none;
  color: white;
  letter-spacing: 0.04em;
}

div.rightside{
  width: 40%;
}

img.question{
  width: 100%;
}


/*====== 行動版 RWD | 320px ~ 414px ======*/
@media screen and (min-width: 320px) and (max-width: 413.98px){

  div.question_block{
    width: 90%;

  }
  div.rightside{
    display: none;
  }
  div.leftside{
    width: 100%;
  }
  
  br.-hide{
    display: none;
  }
  div.question_title{
    font-size: 24px;
  }


}  


/*====== 行動版 RWD | 414px ~ 1080px ======*/
@media screen and (min-width: 414px) and (max-width: 1079.98px){

  div.question_block{
    width: 90%;

  }
  div.rightside{
    display: none;
  }
  div.leftside{
    width: 100%;
  }

  br.-hide{
    display: none;
  }


}  