body {
  font-family: 'Montserrat', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
  /* background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%); */
  color: #333;
  transition: background 0.5s ease;
  background-size: 200% 200%;
  animation: gradientAnimation 10s ease infinite;
}

@keyframes gradientAnimation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.qr-container {
  text-align: center;
  padding: 20px;
  background-color: white;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  max-width: 90%;
  width: 90%;
  max-width: 400px;
  transition: transform 0.3s ease;
  box-sizing: border-box;
}

.qr-container:hover {
  transform: translateY(-5px);
}

h1 {
  margin-bottom: 15px;
  font-size: 28px;
  font-weight: 700;
  color: #2c3e50;
}

p {
  margin: 0 0 30px;
  font-size: 16px;
  line-height: 1.6;
  color: #34495e;
}

qrcode-vue {
  display: inline-block;
  margin: 30px 0;
  padding: 20px;
  background-color: #f8f9fa;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.responsive-qr {
  max-width: 100%;
  height: auto;
}

@media (max-width: 480px) {
  .qr-container {
    padding: 15px;
    width: 95%;
  }

  h1 {
    font-size: 20px;
  }

  p {
    font-size: 14px;
    margin-bottom: 15px;
  }

  qrcode-vue {
    margin: 15px 0;
    padding: 10px;
  }

  .responsive-qr {
    width: 80%;
    height: auto;
  }
}