@import url("https://fonts.googleapis.com/css2?family=Funnel+Sans:ital,wght@0,300..800;1,300..800&family=Outfit:wght@100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: hsl(212, 45%, 89%);
  font-family: "Funnel Sans", sans-serif;
}
.container {
  background-color: hsl(0, 0%, 100%);
  display: flex;
  flex-direction: column;
  max-width: 350px;
  width: 100%;
  padding: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
}
.qr {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  width: 100%;
  max-height: 340px;
  height: 100%;
  border-radius: 15px;
}
.qr img {
  width: 100%;
  display: block;
  border-radius: 15px;
}
.info {
  margin-top: 15px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.info h1 {
  font-size: 22px;
  margin-bottom: 5px;
  color: hsl(218, 44%, 22%);
}
.info p {
  color: hsl(216, 15%, 48%);
}
