body {
    background-color: #202020;
    color: #fff;
    /*font-family: 'Courier New', monospace;*/
    display: flex;
    flex-direction: column;
    height: 100vh;
    margin: 0;
    overflow: hidden;
}

header {
    text-align: center;
    padding: 20px;
    font-size: 24px;
}

#container {
    display: flex;
    flex: 1;
    margin: 20px;
    margin-top:15vh
}

#left-container,
#right-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

#qr-code {
    border: 2px solid #fff;
    border-radius: 10px;
    padding: 20px;
    background-color: #fff;
    margin-right: 20px;
}

.code-square-container {
    display: flex;
}

.code-square {
    width: 60px;
    height: 60px;
    background-color: #222;
    border: 2px solid #fff;
    margin-left: 15px;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.containerConfirmation {
    display: flex;
    flex: 1;
    margin: 20px;
}

.containerCenter
{
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 20px;
    margin-top: 50px;
}
.text-confirmation{
    font-size:25px;
    font-weight:bold;
}
footer {
    text-align: center;
    padding: 10px;
    background-color: #202020;
    color: #fff;
}


.imageData {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
