@import url(https://fonts.googleapis.com/css2?family=Comfortaa:wght@300;400;700&family=Noto+Sans+TC:wght@400;700&family=Roboto&display=swap);
body, html, div {
  font-family: "Comfortaa";
}
.theme--default body, .theme--default html, .theme--default div {
  color: #fff;
}
.theme--slate body, .theme--slate html, .theme--slate div {
  color: #444;
}
.theme--light body, .theme--light html, .theme--light div {
  color: #244;
}

button {
  border-radius: 4px;
  font-weight: bold;
  font-family: "Comfortaa";
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
}
.theme--default button {
  color: #fff;
  background: #444;
  border: 1px #888 solid;
}
.theme--slate button {
  color: #444;
  background: #eeeeee;
  border: 1px #888 solid;
}
.theme--light button {
  color: #244;
  background: #9DB9C8;
  border: 1px #79a solid;
}
button:hover {
  box-shadow: 0 0 32px rgba(255, 255, 255, 0.1);
}
.theme--default button:hover {
  background: #5e5e5e;
  border-color: #a2a2a2;
}
.theme--slate button:hover {
  background: white;
  border-color: #a2a2a2;
}
.theme--light button:hover {
  background: #bed0da;
  border-color: #96b1be;
}
button a {
  text-decoration: none;
}
button[disabled], button.processing {
  pointer-events: none;
  opacity: 0.5;
}

input[type=text], input[type=password] {
  padding: 8px;
  font-family: "Comfortaa";
}

.material-icons.md-18 {
  font-size: 18px;
}

.material-icons.md-24 {
  font-size: 24px;
}

.material-icons.md-36 {
  font-size: 36px;
}

.material-icons.md-48 {
  font-size: 48px;
}
