body {
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: black;
}

.central{
    width: fit-content;
    height: fit-content;
    background: rgba(255, 255, 255, 0.322);
    padding: 25px;
    border-radius: 20px;
    box-shadow: 5px 5px 5px rgb(0, 0, 0);
}

.central div input{
    height: 30px;
    width: 75%;
    border-radius: 10px;
    border: none;
    background-color: black;
    color: white;
}

.central div button{
    background-color: black;
    color: white;
    padding: 10px;
    border-radius: 20px;
    cursor: pointer;
}

#gerador{
    padding: 10px;
    gap: 10px;
    margin: 10px;
}

#fundo{
    min-width: 100%;
    height: auto;
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    opacity: 20%;
}

#qrcode{
    margin-top: 30px;
    display: flex;
    justify-content: center;
}