* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    cursor: crosshair;
}

/* Appear - Animation */
@keyframes appear {
    from {
        opacity: 0;
        scale: 0.5;
    }

    to {
        opacity: 1;
        scale: 1;
    }
}

/* Main-Appear - Animation */
@keyframes main-appear {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0px);
    }
}

.main-content-animate {
    animation: main-appear 1s ease-in;

}

.block {
    animation: appear 1s linear;
    animation-timeline: view();
    animation-range: entry 0% cover 40%;
}

html {
    scroll-behavior: smooth;

}

body {
    margin: 0;
    padding: 0;
    height: auto;
    background-color: #000000;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

.video-background {
    position: fixed;
    inset: 0;
    z-index: -10;
    overflow: hidden;
    pointer-events: none;
    opacity: 60%;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    will-change: transform;
}

.app-container {
    height: auto;
    width: 100%;
    justify-content: center;
    align-items: center;
    z-index: 1;
    scroll-behavior: smooth;
}

@media (min-width: 1025px) {
    body {
        max-width: auto;
        margin: auto;
    }
}

/* Footer Media Query if needed, though mostly moved */
@media (max-width: 768px) {
    .footerdiv {
        flex-direction: column;
        padding: 40px 20px;
        text-align: center;
    }

    .footerdiv .media {
        justify-content: center;
    }
}