/* Smooth Scroll Block Styles */

.smooth-scroll-block {
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.smooth-scroll-block-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    will-change: transform, opacity;
    gap: 1rem;
}

