.prevnext {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.prevnext > * {
    border: 1px solid #ccc;
    text-decoration: none;
    transition: background-color .3s ease;
    cursor: pointer;
    text-decoration: none !important;
}

.prevnext > *:hover {
    background: #f6f6f6;
}

.prevnext > *:nth-child(1){
    border-right-width: 0px;
}