*{
    box-sizing: border-box;
    margin: 0%;
    padding: 0%;
    font-family: "Outfit", sans-serif;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: rgb(255, 255, 255);
    justify-content: center;
    align-items: center;
    height: 100vh;
    padding: 20px;
    background-repeat: repeat;
    background-size: 25px 25px;
    background-image: url(https://i.ibb.co/35j56r3y/favicon-32x32.png)
}


.caixaExterna {
    width: 100%;
    height: 100vh;
    max-width: 1200px;
    max-height: 950px;
    background-color: #d6e2f0;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    display: flex; /* Torna a caixa externa um flex container */
    justify-content: center; /* Centraliza os filhos horizontalmente */
    align-items: center;
    border-radius: 10px;
    min-width: 250px;
}

.container {
    display: flex;
    width: 100%;
    max-width: 220px;
    justify-content: center;
    align-items: center;

}

.qrcode {
    background-color: white;
    border-radius: 10%;
    padding: 5px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.qrcode img {
    border-radius: 10%;
    width: 210px;
    padding: 10px;
}

.qrcode h1 {
    font-size: 15px;
    font-weight:700;
    color: #1f3251;
    padding: 10px;
    max-width: 210px;
}

.qrcode p {
    font-size: 12px;
    font-weight:400;
    color: #b4b7ba;
    padding: 10px;
    max-width: 210px;
}

footer {
    font-size: 12px;
    font-weight: 400;
    color: rgb(0, 0, 0);
    padding: 10px;
}

.rodape {
    background-color:  #ffffff;
    padding: 10px;
    width: 100%;
}

/* Asterisco = seletor universal */
/* Inserir border-box: para que a largura não mude,  o tamanho total do elemento passa a incluir o padding e a borda */
/* vh significa "viewport height", ou seja, altura da janela visível do navegador *\
