        body {
            background-color: var(--bg-color);
            min-height: 100vh;
            overflow-x: hidden;
        }

        .parallax {
            position: relative;
            display: flex;
            overflow: hidden;
            justify-content: center;
            align-items: center;
            height: 100vh;
        }

        #text {
            position: absolute;
            font-size: 3em;
            color: #fff;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
            z-index: 4;
        }

        .parallax img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            pointer-events: none;
        }

        .parallax #stem {
            z-index: 5;
        }

        .sec {
            position: relative;
            background-color: var(--bg-color);
            padding: 40px;
            height: 100%;
            margin-top: 30%;
            display: flex;
            justify-content: space-around;
        }

        .sec h2 {
            font-size: 3em;
            color: white;
            margin-bottom: 10px;
        }

        .sec p {
            font-size: 1em;
            color: white;
            font-weight: 400;
        }

        #Small-trees {
            z-index: 3;
        }

        #grass {
            z-index: 3;
        }

        #Big-tree {
            z-index: 3;
        }
        hr{
            height: 2px;
            width: 5%;
            background-color: white;
        }
        .column1{
            width: 50%;
            padding: 20px;
        }
        .column2{
            width: 50%;
        }
        .column2 img{
            height: auto;
            width: 100%;
        }
        hr.animate-hr {
            width: 20%;
            transition: 1s ease-in-out;
        }
        @media (max-width:800px){
            #text{
                text-align: center;
                font-size: 1.6em;
            }
            .parallax{
                height: 50vh;
            }
            .parallax img{
                height: 50vh;
            }
            .sec{
                flex-direction: column-reverse;
                padding: 5px;
            }
            .column1{
                width: 100%;
            }
            .column2{
                width: 100%;
            }
        }
