/* Reset Default */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Outfit", sans-serif;
}

body {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: hsl(212, 45%, 89%);
}

.card-over {
  background-color: white;
  padding: 20px 40px;
  border-radius: 20px;
  max-width: 650px;
  width: 100%;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.qr-code {
  width: 100%;
  height: auto;
  border-radius: 20px;
  margin-bottom: 20px;
}

h2 {
  font-weight: bold;
  font-size: 28px;
  line-height: 36px;
  padding-bottom: 20px;
}

p {
  font-weight: small;
  font-size: 20px;
  color: hsl(216, 15%, 48%);
  padding-bottom: 20px;
}
