@charset "utf-8";
/* CSS Document AS101 */
.button {
  background-color: #97253e;
  color: white;
  border: none;
  border-radius: 7px;
  box-shadow: 1px 2px 4px 2px #999;
  display: inline-block;
  padding: 8px;
  font-size: 14px;
  cursor: pointer;
  text-align: center;
  outline: none;
}
.button:hover {
  background-color: #861e35;
}
.button:active {
  background-color: #97253e;
  box-shadow: 1px 2px 4px 2px #999;
  transform: translateY(2px);
}
#TopBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  padding: 10px 20px;
  font-size: 16px;
}