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

body {
    font-family: "Outfit", sans-serif;
    background-color: hsl(212, 45%, 89%);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.card {
    background-color: hsl(0, 0%, 100%);

    border-radius: 15px;
    padding: 20px;
    width: 327px;
    height: 500px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.qr-code {
    background-color: #2c7dfa;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
  }
  
  .qr-code img {
    width: 100%;
    border-radius: 5px;
  }

  h1 {
    font-size: 23px;
    color: #1f314f;
    margin-bottom: 10px;
  }
  
  p {
    font-size: 16px;
    color: #7b879d;
    font-weight: 500;
  }