@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@600;700&family=Roboto&display=swap");
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}
::selection {
  background-color: #d6f494;
}
html {
  font-size: 62.5%;
}

.header {
  align-items: center;
}
h1,
h2,
h3 {
  font-family: "Poppins";
  line-height: 1.5;
  margin-bottom: 2rem;
  font-size: 3rem;
}
h4 {
  font-size: 1.8rem;
}
p,
li {
  font-family: "Roboto", Courier, monospace;
  font-size: 1.7rem;
  letter-spacing: 0.5px;
  color: #3c4858;
}
li {
  list-style: none;
}

.block {
  max-width: 1140px;
  margin: 0 auto;
}
.buy {
  outline: none;
  background: #9cc14a;
  color: #fff;
  font-size: 2rem;
  font-family: "Roboto", Courier, monospace;
}
.buy:hover {
  background: #738f37;
  color: #fff;
}
.card:hover {
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.1);
}
.cta {
  background: #348f50; /* fallback for old browsers */
  background: -webkit-linear-gradient(
    to right,
    #56b4d3,
    #348f50
  ); /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(
    to right,
    #56b4d3,
    #348f50
  ); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

  color: #fff;
}

.cta-btn {
  outline: none;
  background: #9cc14a;
  color: #fff;
  padding: 1rem 2rem;
  transition: all 0.5s ease;
}
.cta-btn:hover {
  scale: 1.1;
}
.bi-star-fill {
  /* color: #348f50; */
  /* color: #fa693e !important; */
  color: #9cc14a;
}

.text-new {
  font-family: "Roboto";
  color: #9cc14a;
  font-size: 4rem;
}
