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

html, body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
    font-size: 62.5%;
}

body {
  background-color: #d5e1ef;
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  font-size: 1.6rem;
  position: relative;
}
.card {
  width: 220px;
  background-color: white;
  border-radius: 20px;
  padding: 10px;
  text-align: center;
}

.card .qr-code {
    width: 100%;
    border-radius: 10px;
}

.card .heading {
    margin: 10px auto;
    width: 85%;
    font-weight: 700;
}

.card .sub-text {
    font-size: 1.2rem;
    width: 85%;
    margin: 0 auto 20px;
    opacity: 0.6;
}

.attribution {
    text-align: center;
    position: absolute;
    bottom: 10px;
}

@media (max-width: 575.98px) { 
    .card {
        width: 90%;
    }

    .attribution {
        width: 60%;
    }
 }
