@import url(root.css);

.page.work .overview {
    width: 100%;
    min-height: calc(100vh - var(--nav-height) * 2);
    margin-top: var(--nav-height);
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: var(--nav-height);
    background: transparent;
    overflow: visible;
    pointer-events: none;
}

.overview .work-category {
    flex-grow: 1;
    min-width: 500px;
    height: 70vh;
    background: rgba(31, 30, 30, 0.67);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 8em;
    font-weight: 700;
    transition: background-color 0.7s ease-in-out;
    pointer-events: all;
}

.work-category:hover {
    background-color: var(--primary-color);
    cursor: pointer;
}

.work-category .work-category-link {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: var(--text-color)
}
