* {
    font-family: 'Quantico', 'Courier New', Courier, monospace;
}

/* Center the title at the top */
h1.title {
    text-align: center;
    /* Center the title */
    margin: 0;
    /* Remove default margin */
    padding: 20px 0;
    /* Add some padding around the title */
    font-size: 2.5rem;
    /* Set a larger font size for the title */
    color: #333;
    /* Dark text color */
}

img {
    max-width: 400px; /* Set your max width */
    max-height: 400px; /* Set your max height */
    width: auto; /* Maintain aspect ratio */
    height: auto; /* Maintain aspect ratio */
    display: block; /* Removes extra spacing below inline images */
    margin: auto; /* Center the image */
}

/* Flexbox to align both boxes horizontally */
body {
    display: flex;
    justify-content: center;
    /* Center the flex container horizontally */
    align-items: center;
    /* Center the flex container vertically */
    min-height: 100vh;
    /* Full height of the viewport */
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    /* Optional background color */
    flex-direction: column;
    /* Stack the title and content vertically */
    overflow: hidden;
}

/* When the screen is narrower than 768px, stack items vertically */
@media (max-width: 1378px) {
    .wrapper {
        flex-direction: column; /* Stack items vertically */
        align-items: center; /* Center the stacked boxes */
    }
    body {
        overflow: visible;
    }
}

.wrapper {
    display: flex;
    gap: 20px; /* Space between boxes */
    justify-content: center;
    flex-wrap: nowrap; /* Prevent wrapping by default */
}

/* Style for the boxes */
.content {
    text-align: center;
    /* Center text inside the box */
    max-width: 600px;
    /* Set the maximum width of the box */
    padding: 20px;
    /* Add padding inside the box */
    background-color: white;
    /* Optional background color */
    border-radius: 8px;
    /* Optional rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    /* Optional box shadow */
    flex-direction: column;
    align-items: center;
    justify-content: center;
    display: flex;
}

h1 {
    font-size: 2rem;
    color: #333;
    /* Dark text color */
}

/* Ensure the QR code container (#qrcode) is centered */
#qrcode {
    display: inline-block; /* Ensures the QR code is treated as an inline element */
    margin: auto;
}