 * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: linear-gradient(135deg, #74ebd5, #9face6);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

.main-container {
  background: #fff;
  padding: 2rem 3rem;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.qrcontainer h1 {
  margin-bottom: 20px;
  color: #333;
}

#text-field {
  width: 80%;
  padding: 10px;
  font-size: 1rem;
  border: 2px solid #9face6;
  border-radius: 10px;
  outline: none;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

#text-field:focus {
  border-color: #74ebd5;
  box-shadow: 0 0 8px #74ebd5;
}

#GenerateQr {
  background-color: #74ebd5;
  border: none;
  padding: 10px 20px;
  color: white;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

#GenerateQr:hover {
  background-color: #4ecdc4;
}

.displayResult {
  margin-top: 20px;
}

.displayResult img {
  margin-top: 15px;
  border: 2px solid #ddd;
  padding: 10px;
  border-radius: 10px;
  background: #f9f9f9;
}
