#helpMessage {
    position: fixed;
    bottom: 10px;
    right: 10px;
    color: white;
    font-size: 1.5em;
    font-family: "AccentureFont";
    text-align: right;
}

@font-face {
    font-family: "AccentureFont";
    src: url("./GraphikBold.otf") format("opentype");
}

body {
    background: linear-gradient(135deg, #800080, #4b0082);
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    font-family: "AccentureFont";
    user-select: none;
}

.container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 90%;
    max-width: 1200px;
    padding: 20px;
}

.logo {
    width: 400px;
    height: auto;
    filter: brightness(0) invert(1);
    margin: 0;
}

#nameDisplay {
    color: white;
    font-size: 8em;
    text-align: center;
    margin: 0;
    transform: none;
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
        /* Stack on mobile */
        gap: 20px;
    }

    .logo {
        width: 200px;
    }
}

.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.qr-modal {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.qr-code {
    max-width: 300px;
    height: auto;
}

.qr-selection {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    width: 80%;
    max-width: 400px;
}

.qr-selection button {
    display: block;
    width: 100%;
    padding: 20px;
    margin: 10px 0;
    border: none;
    background-color: purple;
    color: white;
    cursor: pointer;
    font-family: "AccentureFont";
    font-size: 1.5em;
    border-radius: 5px;
    transition: background-color 0.2s;
}

.qr-selection button:hover {
    background-color: #7b1fa2;
}
