.nave{
    width:100%;
    height:50px;
    background: #285D93;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
}
.pagination {
    display: flex;
    padding-left: 0;
    list-style: none;
    border-radius: 0.25rem;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    width:auto;
    height:30px;
}
.pagination li{
    width:50px;
    max-width:100%;
    height:100%;
    border:1px #bea139 solid;
    border-radius: 0.25rem;
    overflow: hidden;
    margin:1px;
}
.pagination li:hover{
    background: #bea139;
}
.pagination li:hover a{
    color:#285D93;
}
.pagination li a{
    text-decoration: none;
    text-align: center;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    align-items: center;
    justify-content: center;
    color:#bea129;
}