/* src/styles.scss */
body {
  margin: 0;
  padding: 0;
  font-family: "Lato", sans-serif;
  font-size: 12pt;
  background-color: #ffffff;
}
h1,
h2,
h3,
h4 {
  font-family: "Lato", sans-serif;
}
.main-button-dark {
  border: solid 2px #000000;
  background:
    linear-gradient(
      to right,
      #000000 50%,
      rgba(0, 0, 0, 0) 50%);
  background-size: 200% 100%;
  background-position: right bottom;
  color: #000000;
  font-size: 14pt;
  width: 150px;
  height: 50px;
  outline: none !important;
  transition: all 0.3s ease;
}
.main-button-dark:hover {
  background-position: left bottom;
  color: #fff;
  cursor: pointer;
}
.main-button-light {
  border: solid 2px #ffffff;
  background:
    linear-gradient(
      to right,
      #ffffff 50%,
      rgba(0, 0, 0, 0) 50%);
  background-size: 200% 100%;
  background-position: right bottom;
  color: #ffffff;
  font-size: 14pt;
  width: 150px;
  height: 50px;
  outline: none !important;
  transition: all 0.3s ease;
}
.main-button-light:hover {
  background-position: left bottom;
  color: #000000;
  cursor: pointer;
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
