@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap");

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

.page {
  background-color: hsl(212, 45%, 89%);
  width: 100%;
  height: auto;
  margin-top: 6rem;
  padding: 30px;
  font-family: "Outfit", sans-serif;
}

.card {
  max-width: 350px;
  height: auto;
  background-color: hsl(0, 0%, 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  margin: 0 auto;
  border-radius: 20px;
}

.card__image {
  display: block;
  width: 90%;
  height: auto;
  margin: 2rem;
  align-self: center;
  justify-self: center;
  border-radius: 20px;
}

.card__header {
  font-weight: 700;
  margin: 0 2rem 2rem;
  font-size: 1.2rem;
  color: hsl(218, 44%, 22%);
}

.card__text {
  margin: 0 2rem 2rem;
  font-weight: 400;
  font-size: 15px;
  color: hsl(216, 15%, 48%);
}

.footer {
  margin: 2rem auto;
}

.footer__text {
  padding: 1rem;
  font-weight: 400;
  text-align: center;
}

.footer__link:link {
  color: hsl(240, 100%, 50%);
  text-decoration: none;
}
.footer__link:visited {
  color: rebeccapurple;
}
.footer__link:hover {
  color: hsl(256, 100%, 50%);
  text-decoration: underline;
  cursor: pointer;
}
.footer__link:active {
  color: red;
  text-decoration: none;
}
