.app {
    max-width:unset;
    align-items: center;
}

.app-nav {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.app-nav-tile {
    all: unset;
    box-sizing: border-box;
    cursor: pointer;
    width: 300px;
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    background-color: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--white);
    border-radius: 6px;
    transition: 0.2s;
}

.app-nav-tile:hover {
    border-color: var(--primary-color);
    background-color: var(--white);
    color: var(--black);
}

.app-nav-tile i {
    font-size: 4rem;
    margin-top: 85px;
}

.app-nav-tile span {
    font-size: 1.5rem;
    text-align: center;
}