body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden; /* Prevents the page itself from scrolling */
    font-family: sans-serif;
}

.background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    /* Updated path */
    background-image: url('guy.png'); 
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.scroll-wrapper {
    position: absolute;
    width: 100%;
    text-align: center;
    bottom: -100px; /* Start below the viewport */
    animation: scrollUp 10s linear infinite;
}

.rainbow-text {
    font-size: 5rem;
    font-weight: bold;
    background: linear-gradient(
        to right, 
        red, orange, yellow, green, blue, indigo, violet
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

@keyframes scrollUp {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-120vh); /* Moves text above the top of the screen */
    }
}