﻿.website-navigator {
    padding: 10px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    column-gap: 50px;
    row-gap: 10px;
    justify-content: center;
    margin-bottom: 10px;
}

.website-navigator-anchor {
    font-size: var(--font-size-5);
    font-family: var(--primary-font-family);
    color: var(--primary-font-color);
    transition: all 0.2s;
    text-decoration: none;
    text-align: center;
}

.website-navigator-anchor:hover {
    transform: scale(1.1);
    cursor: pointer;
    text-decoration:underline;
}
