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

*, *::before, *::after {
    box-sizing: border-box;
  }

  * {
    margin: 0;

  }
  
  */
  body {
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
  }
 
  img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
  }

  input, button, textarea, select {
    font: inherit;
  }
 
  p, h1, h2, h3, h4, h5, h6 {
    overflow-wrap: break-word;
  }
  
  #root, #__next {
    isolation: isolate;
  }

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

.card {
    border-radius: 20px;
    text-align: center;
    background-color: white;
    max-width: 20rem;
    height: auto;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

.title {
    font-weight: 700;
    margin-bottom: 15px;
    color: #1f314f;
}

.text {
    font-size: 0.938rem;
    font-weight: 400;
    color: #7d889e;
    margin-bottom: 20px;
}
