*{
    margin: 0;
    padding: 0;
    box-sizing: 0;
    font-family: 'Poppins', sans-serif;
}

center{
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2%;
    display: flex;
}

header{
    height: 3%;
    max-width: 2000px;
    background-color: white;
    padding: 15px 0;
    border-bottom: solid rgb(200, 200, 200);
}

.logo{
    color: #16507b;
    position: absolute;
    top: 2%;
    left: 1%;
    margin-right: -50%;
}

.logo h2{
    font-weight: normal;
    font-size: 25px;

}

.menu{
    width: 98%;
    text-align: center;
    position: absolute;
    top: 2%;
    right: 10%;
    margin-right: -50%;
}

.menu a{
    color: #124265;
    font-size: 14px;
    text-decoration: none;
    margin-right: 20px;
    transition: 0.5s;
}

.menu a:hover{
    color: #007bff;

}


.menu .btn-boletim-error:hover{
    background-color: #124265;
    color:white;
    transition: 0.5s;
}

.tabelaUm{
    border-color: #16507b;
    border-style: inherit;
    border-spacing: 5px;
    background-color: rgb(240,248,255);
    color: black;
    position: absolute;
    top: 35%;
    left: 1%;
    margin-right: -50%;

}

.tabelaUm .block:hover{
    background-color: rgb(168, 218, 213);
}

    body {
        overflow-x: hidden;
    }

.btn-boletim-error{

    background-color: #007bff;
    display: inline-block;
    padding: 5px 8px;
    color: white;
    border-radius: 7px;
    border-color: #007bff;

}