@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@400;700&display=swap");
/*(paragraph)*/
* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #d6e2f0;
}
body #card {
  width: 85%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: white;
  padding: 15px;
  border-radius: 20px;
  font-size: 15px;
  margin-top: auto;
}
body #card #qr {
  width: 100%;
  margin-bottom: 20px;
  border-radius: 20px;
}
body #card #qr #qr-img {
  width: 100%;
  margin: 0px;
  border-radius: 10px;
}
body #card #info {
  width: 90%;
  display: flex;
  flex-direction: column;
  text-align: center;
  font-family: "Outfit", sans-serif;
  margin-bottom: 20px;
}
body #card #info #info-title {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #1f3251;
}
body #card #info #info-text {
  color: #7b879d;
}
body .attribution {
  font-size: 14px;
  text-align: center;
  margin-top: auto;
  align-self: flex-start;
}
body .attribution a {
  color: #1f3251;
  text-decoration: none;
}
@media (min-width: 375px) {
  body #card {
    width: 320px;
  }
}

/*# sourceMappingURL=styles.css.map */
