* {
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0) !important;
  -webkit-focus-ring-color: rgba(255, 255, 255, 0) !important;
  outline: none !important;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  padding: 0px;
  margin: 0px;
  border: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html,
body {
  width: 100%;
  height: 100%;
}
body {
  overflow: hidden;
}
.btn {
  cursor: pointer;
  pointer-events: all;
}
.btn.disabled,
.btn:disabled {
  pointer-events: none;
}
.disabled .btn,
:disabled .btn {
  pointer-events: none;
}
body {
  background-color: #063A89;
  font-family: 'Noto Serif TC';
  font-weight: 900;
}
.page {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 40px;
}
#input_page #flex_top {
  flex: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}
#input_page #flex_bottom {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#input_page #title {
  color: #DE521D;
  font-size: 30px;
  margin-bottom: 20px;
}
#input_page .tag_input {
  padding: 10px;
  margin: 10px;
  width: 100%;
  box-shadow: 0px 0px 5px black inset;
  font-size: larger;
}
#input_page .tag_input.active {
  background-color: #DE521D;
}
#input_page #notification {
  color: white;
  margin: 20px 0px;
}
#input_page #send_btn {
  color: black;
  font-size: 20px;
  background-color: #DE521D;
  padding: 5px 20px;
  border-radius: 5px;
}
#input_page #send_btn.disabled {
  background-color: white;
  opacity: 0.5;
}
#result_page {
  font-size: 30px;
  color: #DE521D;
}
