.fun_body {
    width: 100%;
    height: 2000vh; /* Total page height */
    background-color: var(--bg_gray);
    position: relative;
}
.fun_section {
    position: relative;
    height: 100vh; /* Gallery takes one viewport height */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.funfacts_heading{
    font-size: 4em;
    color: var(--bg_gray);
    background-color: var(--bg_beige);
    text-align: center;
    margin: 0;
    padding: 10px 0;

}
.fun_body img{
    position:absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;

}

.fun_cursor{
position: absolute;
top: 0;
left: 0;
width: 300px;
height: 200px;
z-index: 1000;
pointer-events: none;

}

.fun_body a, .fun_body p{
    text-decoration: none;
    color: var(--text_beige);
    font-size: 10px;
    
}

.fun_body a span{
    padding: 0 2em;

}

.fun_gallery {
    position: absolute;
    width: 200%;
    height: 100%;
    left: -75%;
    pointer-events: none;
    overflow: hidden;
    pointer-events: none;

}
.fun_item {
    position: absolute;
    cursor: pointer;
    transform: translate(-50%, -50%);
    top: 0;
    left: 0;
    width: 800px;
    height: 80px;
    pointer-events: auto;
}
.fun_item p {
    font-size: 24px;
    color: beige;
    text-transform: uppercase;
    text-align: center;


}

.fun_item p span {
    font-size: 16px;
    color: #ddd;
}
