.nav-links {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    .nav-previous, .nav-next {
        margin: 0 15px;
        background-color: $primaryColor;
        padding: 10px 25px;
        border-radius: 5px;
        transition: 0.3s;
        &:hover {
            background-color: $orange;
        }
        a {
            text-decoration: none;
            color: $white;
            font-weight: 600;
            font-size: 14px;
        }
    }
}