:root{
    --clr-border: rgba(0, 0, 0, 0.125);
}

.navigation .wrapper{
    width: 100%;
    display: grid;
    grid-template-columns: auto auto auto auto;
    justify-content: center;
    gap: 10px;
}
.navigation .wrapper .box{
    width: 200px;
    height: 200px;
    background-color: var(--clr-border);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 5px;
    font-weight: 700;
}
