        body,
        html {
            margin: 0;
            padding: 0;
            width: 100%;
            height: 100%;
            font-family: 'Lato', sans-serif;
        }

        body {
            height: 700vh;
            /* Extend the height for scrolling */
            margin: 0;
            overflow-y: scroll;

            background-image: url('/assets/images/background.png');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
        }

        body.no-scroll {
            overflow: hidden;
        }

        section {
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 20px;
        }

        #content {
            padding: 10vw;
            text-align: justify;
            opacity: 0;
            position: absolute;
            color: white;
            top: 25vh;
            right: 0vw;
            width: 40vw;
        }

        #content h1 {
            font-size: 3.7vw;
            margin-bottom: 20px;
            text-transform: uppercase;
        }

        #content p {
            font-size: 1.2vw;
            line-height: 1.5;
            text-align: justify;
        }

        #section-two {
            position: fixed;
            top: 150vh;
            width: 100%;
            background-color: #182161;
            color: white;
            flex-direction: column;
            padding: 40px 20px;
        }

        .logo-band {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .logo-band a {
            display: inline-block;
            margin: 0 5vw;
        }

        .logo-band img {
            width: 15vw
        }

        #top-section {
            position: fixed;
            width: 100vw;
            height: 100vh;
        }

        .animated-logo {
            opacity: 0;
            position: absolute;
            top: 25vh;
            left: 60vw;
            background-size: contain;
            background-position: top;
            background-repeat: no-repeat;
        }

        .animated-logo.top {
            transform-origin: center bottom;
            height: 26.5vh;
        }

        .animated-logo.bottom {
            top: 53vh;
            height: 26.5vh;
            transform-origin: center top;
        }

        @media (max-aspect-ratio: 1000/562) {
            .animated-logo.final {
                height: 53vh;
            }

            .animated-logo.top {
                height: 26.5vh;
            }

            .animated-logo.bottom {
                height: 26.5vh;
            }
        }

        @media (min-aspect-ratio: 1000/562) {
            .animated-logo.final {
                height: 29.8125vw !important;
            }

            .animated-logo.top {
                height: 14.90625vw;
            }

            .animated-logo.bottom {
                height: 14.90625vw;
                top: 29.8125vw;
            }
        }

        .animated-logo.final {
            position: absolute;
            cursor: pointer;
            z-index: 100000;
            top: 50vh;
            left: 50vw;
            transform: translate(-50%, -50%);
            opacity: 1;
            height: 53vh;
        }


        .line {
            position: relative;
            opacity: 0;
            /* Initially hidden */
            top: 25vh;
            /* Starting position */
            transition: opacity 0.5s ease, top 0.5s ease;
        }


        @keyframes moveArrow {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(10px);
            }
        }

        #arrow {
            position: absolute;
            top: 15vh;
            left: 25vw;
            opacity: 0;
            width: 0;
            height: 0;
            border-left: 10px solid transparent;
            border-right: 10px solid transparent;
            border-top: 15px solid white;
            animation: moveArrow 1s infinite;
            margin: 0 auto 10px auto;
        }




        /* Fullscreen video overlay */
        #video-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            z-index: 9999;
            background-color: black;
            overflow: hidden;
        }

        #intro-video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            /* Ensures video covers the entire screen */
        }


        @media (max-width: 1210px) {
            #content h1 {
                font-size: 3.65vw;
            }
        }

        @media (max-width: 1050px) {
            #content h1 {
                font-size: 3.6vw;
            }
        }

        @media (max-width: 930px) {
            #content h1 {
                font-size: 3.55vw;
            }

            .mini-logo {
                width: 2.5vw;
            }
        }

        @media (max-width: 835px) {
            #content h1 {
                font-size: 3.5vw;
            }
        }

        @media (max-width: 768px) {

            .animated-logo.final {
                height: 53vh;
            }

            .animated-logo.top {
                height: 25vh;
            }

            .animated-logo.bottom {
                height: 25vh;
            }

            #arrow {
                left: 50vw;
                top: 20vh;
                transform: translateX(-50%);
            }

            .section-one {
                flex-direction: column;
                height: auto;
            }

            #content {
                display: none;
                padding: 10vw 5vw;
            }

            #content h1 {
                font-size: 5vw;
            }

            #content p {
                font-size: 3vw;
            }

            .logo-band {
                flex-direction: column;
            }

            .logo-band a {
                margin: 0 0 10vw 0;
            }

            .logo-band img {
                width: 30vw;
            }
        }