* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

h1 {
  font-size: 3rem;
}

header {
  background-color: rgba(165, 49, 107, 0.5254901961);
  padding: 20px;
  text-align: center;
  margin-bottom: 50px;
}

.card-furret {
  text-align: center;
  margin-bottom: 20px;
}

.furret-img {
  width: 20vw;
  height: auto;
  display: block;
  margin: 0 auto;
}

button {
  color: white;
  background: linear-gradient(270deg, rgba(165, 49, 107, 0.5254901961), #f849a1, rgba(165, 49, 107, 0.5254901961));
  width: 20vw;
  height: 10vh;
  font-size: 20px;
  font-weight: bold;
  padding: 10px 20px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
}

p {
  text-align: center;
  font-size: 1.8rem;
  margin-top: 50px;
}

.texto {
  display: inline-block;
  padding: 10px;
  border-radius: 10px;
}

@media (max-width: 768px) {
  h1 {
    font-size: 3rem;
  }
  p {
    font-size: 1.5rem;
  }
  .furret-img {
    width: 50vw;
    height: auto;
  }
  button {
    width: 40vw;
  }
}
@media (max-width: 547px) {
  h1 {
    font-size: 2.5rem;
  }
  p {
    font-size: 1.4rem;
  }
  .furret-img {
    width: 70vw;
    height: auto;
  }
  button {
    width: 60vw;
    font-size: 16px;
  }
}/*# sourceMappingURL=style.css.map */