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

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    font-family: 'Outfit', sans-serif;
    background-color: #d5e1ef;
  }

  .container {
    max-width: 200px;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 16px;
    margin: 5px;
    background-color: white;
  }

  .qr-code img {
    width: 100%;
    height: auto;
    border-radius: 10px;
  }

  .para {
    font-size: 14px;
    font-weight: bold;
    color: black;
    background-color: transparent;
    padding: 2px;
    margin: 5px;
  }

  .para1 {
    font-size: 10px;
    color: black;
    opacity: 0.5;
    background-color: transparent;
    padding: 6px;
    margin: 2px;
  }
