/* Reset default styles */
* {
  box-sizing: border-box;
  margin: auto;
  padding: 0;
}

/* Set the font family and size for the entire page */
body {
  font-family: "Bodoni", "Times New Roman", Arial, sans-serif;
  font-size: 16px;
  text-align: center;
}

/* Add a top-level container to center the page content */
.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

/* Style the page title */
h1 {
  font-size: 32px;
  margin-bottom: 20px;
}

/* Style the input form */
form {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

label {
  font-size: 20px;
  margin-bottom: 10px;
}

input[type="text"] {
  font-size: 20px;
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

button[type="submit"] {
  font-size: 20px;
  padding: 10px;
  background-color: #4CAF50;
  color: #FFFFFF;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

button[type="submit"]:hover {
  background-color: #3E8E41;
}

/* Center the parent container */
#qrcode-container {
  text-align: center;
}

/* Style the QR code image */
.qr-code {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  border: 10px solid #FFFFFF;
}

/* Style the footer */
.footer {
  width: 100%;
  background-color: #616060;
  text-align: center;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  font-size: 10px;
  color: white;
}


/* Style the error message */
.error-message {
  font-size: 20px;
  color: #FF0000;
  margin-bottom: 20px;
}
