/* FUNFACTS BOX STYLES */
.about-flex {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
}

.fact-box {
    text-align:left;
    padding: 10px;
}

.fact-box-box {
    background-color: var(--tv-b-color);
    width: 100%;
    height: 300px;
    overflow: auto;
    overflow-x: hidden;
}

.p-info {
  color:var(--accent);
}

.a-title {
    color: #ffffff;
    cursor:url('/graphics/cursors/magic-cursor-pointer.png') 10 0, pointer;
    background-color:var(--navi-hover);
    text-align: center;
    text-transform: uppercase;
    margin: 0;
    position: sticky;
    top: 0;
    z-index:2;
}