            .h2reset {
                font-size: 16px;
                /* Typical font size of a paragraph */
                font-weight: normal;
                /* Removes bold styling */
                margin: 0;
                /* Adjust margin as needed */
                padding: 0;
                /* Adjust padding as needed */
                line-height: 1.6;
            }

            .hidden {
                display: none !important;
            }

            .gallery {
                overflow: hidden;
                display: flex;
                gap: 1vw;
                max-width: 100%;
                height: 100vh;
            }

            .gallery_line {
                display: flex;
                flex-direction: column;
                gap: 1vw;
                height: fit-content;
                animation: slide 30s linear infinite;
            }

            .gallery_line:nth-child(2) {
                animation-direction: reverse;
            }

            .gallery_line img {
                flex: 1 1 auto;
                width: 100%;
                object-fit: cover;
                border-radius: 10px;
            }

            #camera-media {
                width: 80px;
                margin-bottom: 22px;
            }

            @keyframes slide {
                0 {
                    transform: translatey(0);
                }

                100% {
                    transform: translatey(-50%);
                }
            }
