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

        .qmpw {
            font-size: 50px;
            font-weight: bold;
            color: black;
            text-align: center;
            text-transform: uppercase;
            padding: 20px;
        }

        .qmpw .qm {
            color: black;
            display: block;
        }

        .qmpw .pm {
            color: white;
            display: block;
        }

        .input * {
            font-size: 20px;
            background-color: black;
            color: white;
            box-shadow: none;
            -webkit-box-shadow: none;
            -moz-box-shadow: none;
            border: none;
            /* Removes the border */
            outline: none;
            /* Removes the focus outline */
        }

        /* Placeholder styling */
        .input input::placeholder {
            color: rgba(255, 255, 255, 0.7);
        }

        /* Button styling */
        .input button {
            background-color: black;
            color: white;
            border: 1px solid white;
            cursor: pointer;
            box-shadow: none;
            -webkit-box-shadow: none;
            -moz-box-shadow: none;
        }

        .output {
            grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
            gap: 20px;
            width: 700px;
            max-width: 100%;
        }


        .pw {
            color: white;
            letter-spacing: -8px;
            font-size: 30px;
        }

        .mq {
            width: 20%;
            font-size: 0.9em;
            padding: 5px;
        }
