* 
{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    padding: 0;
    background: #000;
    overflow-x: hidden;
    color: #fff;
    background: linear-gradient(28deg, rgba(39, 107, 65, 1) 0%, rgba(56, 59, 23, 1) 50%, rgba(19, 41, 31, 1) 100%);
}

html, body {
    scroll-behavior: smooth; /* Enable smooth scrolling */
}

.scroll-container {
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

#parallax-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain; /* Default state */
    transition: object-fit 2s ease-in-out; /* Smooth transition */
    z-index: -1; /* Keep it behind other elements */
}

.pop-in-section {
    position: fixed; /* Ensure it stays in the center of the viewport */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    z-index: 1;
    text-align: center;
    opacity: 0;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.pop-in-section.visible {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}


p {
    margin: 10px 0px;
}

.no-wrap {
    white-space: nowrap;
}

