/* src/styles.css */
body {
  background-color: #101010;
}
button {
  border: none;
}
* {
  font-family: "Poppins", sans-serif;
}
.desktop {
  display: block;
}
.mobile {
  display: none;
}
html {
  scroll-behavior: smooth;
}
a {
  text-decoration: none;
}
@media screen and (max-width:600px) {
  .desktop {
    display: none;
  }
  .mobile {
    display: block;
  }
}
.thm-btn {
  vertical-align: middle;
  border: none;
  outline: none;
  background-color: #A0680E;
  text-align: center;
  border: none;
  background-size: 200% auto;
  border-radius: 3vw;
  color: white;
  padding: 0;
  align-items: center;
  justify-content: center;
  display: flex;
  width: 250px;
  font-size: 1vw;
  height: 5.5vh;
  width: 16.5vw;
}
@media screen and (max-width:600px) {
  .thm-btn {
    vertical-align: middle;
    border: none;
    outline: none;
    text-align: center;
    border: none !important;
    background-size: 200% auto;
    border-radius: 5px;
    color: white !important;
    padding: 0 !important;
    font-size: 15px !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 50px !important;
    font-family: sans-serif !important;
  }
}

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