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


body {

    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center;    /* Center vertically */
    height: 100vh;          /* Full viewport height */
    margin: 0;              /* Remove default margin */
    background-color: #d5e1ef;
    
}

.cardContainer {
    display: flex;
    flex-direction: column;
    width: 320px;
    height: auto;
    border-radius: 10px;
    padding: 16px;
    padding-bottom: 40px;
    background-color: white;
    align-items: center;
}

.qrContainer img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.qrContainer {
    margin-bottom: 24px;
}

.textContainer {
    display: flex;
    flex-direction: column;
}

.textContainer p {
    text-align: center;
    padding-left: 16px;
    padding-right: 16px;
}

.outfit-title {
    font-family: "Outfit", sans-serif;
    color: #1F314F;
    font-size: 22px;
    line-height: 120%;
    font-weight: 700;
  }

  .outfit-description {
    font-family: "Outfit", sans-serif;
    color: #68778D;
    font-size: 15px;
    line-height: 140%;
    font-weight: 400;
    letter-spacing: 0.2px;
  } 