*{
    font-family:  'Roboto', sans-serif;
    box-sizing: border-box;
}
body{
    background-color: #f6f8fc;
}
.content {
    width: 100vw;
    background-color: white;
    padding: 1rem;
    height: 1000vh;
}

.pagination{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 1rem;
}
.pagination button{
    color:#fff;
    margin: .25rem 0;
    background-color: #6c79db;
    border: none;
    border-radius: 1rem;
    padding: 1rem;
}

@media screen and (min-width: 992px) {
    .content {
        max-width:  992px;
        height: auto;
        margin:1rem auto;
        border-radius: 1rem;

    }

}

.content h1{
   padding: 1rem;
}

