.project__prevnext {
    margin-top: 46px;
    margin-bottom: 24px;
}

.subNav a {
    letter-spacing:auto;
    display:flex;
    align-items: center;
}

.subNav a p {
    margin-bottom: 0;
}

.subNav a:hover {
    letter-spacing: 0.1rem;
    transition: all 0.3s ease-in-out;
}

.subNav a:hover .arrow-icon-container {
    background-color: black;
    transition: all 0.3s ease-in-out;
}

.subNav a:hover .arrow-icon-container .arrow {
    fill: white;
    transition: all 0.3s ease-in-out;
}

.subNav a p {
    margin-top: 0;
}

.arrow {
    fill: black;
}

.left {
    transform-origin: center;
    transform: rotate(180deg);
}

.arrow-icon-container {
    border: solid black 1px;
    padding: 6px;
    border-radius: 50%;
    margin-right: 6px;
    background-color:white;
}

.arrow-icon-container:has(.left){
    margin-left: 6px;
    margin-right: 0;
}

@media screen and (min-width: 60rem) {
    .subNav a {
        letter-spacing: 0.8rem;
    }

    .arrow-icon-container {
        margin-right: 12px;
    }
}