@import url(reset.css);
@import url(assets.css);


/* Estilos gerais */
body {
    display: flex;
    flex-direction: column;
    align-content: space-between;
    height: 100vh;
    font-family: Arial, sans-serif;
    background-color: rgb(40, 40, 43);
    color: #f6f3ed;
    font-size: 1rem;
}

@media only screen and (max-width: 760px) {
    header h2{
        padding-top: 30px;
        font-size: 1.5rem;
    }

    h3{
        font-size: 1.25rem;
    }

    body{
        height: calc(100vh - 20px);
    }

    .not-for-mobile{
        display: none;
    }

    #qrcodepix {
        max-height: 132px;
        max-width: 132px;
    }

}


  /* Estilos do cabeçalho */
header {
    padding: 30px;
    text-align: left;
}
  
h1 {
    font-size: 4rem;
}
  
h2 {
    font-size: 2rem;
    padding-bottom: 2rem;
}

h3 {
    font-size: 1.5rem;
}

.material-symbols-outlined{
    color: #f6f3ed;
    padding: 30px 0;
}


/* Estilo Main */
main{
    padding: 30px;
    height: 100%;
    overflow:hidden;
}

section {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    transition: opacity 0.5s;
}

section:first-of-type {
    display: block;
}

section:target {
    display:block;
}


/* Estilos do rodapé */
footer {
background-color: #333;
color: #fff;
padding: 20px;
text-align: center;
}

footer ul {
list-style: none;
margin: 0;
padding: 0;
}

footer li {
display: inline-block;
margin-right: 20px;
}

footer a {
color: #fff;
text-decoration: none;
}

.hidden {
    display: none;
}

#qrcodepix {
    max-height: 232px;
    max-width: 232px;
}

#copiaQR{
    cursor: pointer;
}