.main-content-wrap {
    filter: blur(8px);
    pointer-events: none; /* Disables clicking links */
    user-select: none; /* Prevents copying text */
    position: relative;
}

.blur-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* display: flex; */
    padding-left: 2rem;
    /* justify-content: center; */
    align-items: flex-start; /* Keeps text near the top of the blur */
    /* flex-direction: column; */
    padding-top: 100px;
    background-color: rgba(255, 255, 255, 0.3);
    /* z-index: 10; */
}
