body{
    background-color: hsl(212, 45%, 89%);
}
.container {
  /* Estrutura branca */
  background-color: white;
  width: 320px; 
  height: 499px;
  border-radius: 20px; 
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); 
  
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  
  padding: 18px;
  box-sizing: border-box;
  
  font-family: 'Outfit', sans-serif;
  text-align: center;
  color: #333;
}

.qr-code{
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 24px;
}

.qr-code, img{
  width: 280px;
  height: 280px;
  border-radius: 12px;
  background-color: #eee;
}

h1 {
  font-size: 22px;
  margin-bottom: 16px;
  font-weight: 700;
}

p {
  font-size: 16px;
  color: #666;
  line-height: 1.5;
  margin-bottom: 24px;
}


footer{
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  padding: 10px;
}