body {
    background-color: #1a1e2b;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    font-family: Arial, sans-serif;
}

.container {
    text-align: center;
}

.qr-code-container {
    margin-top: 20px;
}

input[type="text"] {
    padding: 10px;
    width: 300px;
    border: none;
    border-radius: 5px;
    margin-bottom: 10px;
    background-color: #2a2e3b;
    color: white;
}

button {
    padding: 10px 20px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #45a049;
}

.logo {
    display: block;
    margin: 0 auto; /* Center the logo */
    max-width: 512px; /* Adjust the size as needed */
    height: auto;
}

#qrCode {
    margin-top: 20px;
}

#downloadLink {
    display: block;
    margin-top: 10px;
    color: #4CAF50;
    text-decoration: none;
}
