@charset "UTF-8";

section#pdfs{
    display: flex;
    flex-flow: row wrap;
    width: 100%;
}

h3{
    text-align: center;
    margin-bottom: 5px;
}
.pdf-box{
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    background-color: var(--fundo-verde);
    padding: 10px;
    border: 1px solid black;
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.418);
    border-radius: 5px;
    margin: 20px;
    height: 400px;
}

.preview > img{
    width: 300px;
    height: 300px;
    display: block;
    margin: auto;
    margin-bottom: 5px;
    border-radius: 5px;
}

.botao-abrirpdf{
    display: block;
    margin: auto;
    padding: 10px;
    background-color: var(--verde-principal);
    color: white;
    border-radius: 5px;
    cursor: pointer;
    border: 2px solid black;
    font-weight: bold;
    text-align: center;
    width: 30%;
}

.botao-abrirpdf:hover{
    background-color: var(--fundo-claro);
    color: var(--verde-principal);
}



