    html,
    body {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        width: 100%;
        -webkit-text-size-adjust: none;
        -moz-text-size-adjust: none;
        -ms-text-size-adjust: none;
        text-size-adjust: none;
    }

    html {
        transform: none !important;
        zoom: 1 !important;
        font-size: 100%;
    }

    *,
    *::before,
    *::after {
        box-sizing: inherit;
    }

    main {
        justify-content: center;
        align-items: center;
        background-color: #f5f5f5;
        object-fit: cover;
    }

    .gallery-section {
        padding: 100px 0 100px 0;
    }

    nav {
        position: absolute;
        display: flex;
        z-index: 2;
    }

    .nav-bar {
        width: 100%;
        justify-content: right;
        align-items: right;
        top: 10px;
        right: 10px;
    }

    nav p {
        font-size: 1.5rem;
        margin: 0;
        color: white;
    }

    .welcome-section {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        height: 100vh;
        width: 100%;
        background-color: #f5f5f5;
        object-fit: cover;
    }

    .welcome-section .video-container {
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        overflow: hidden;
        margin-bottom: 100px;
    }

    .static-element {
        outline: none;
        display: inline-block;
        flex-direction: column;
        justify-content: flex-start;
        flex-shrink: 0;
        transform: none;
    }

    .img-grid-section {
        display: flex;
        position: relative;
        justify-content: center;
        align-items: center;
    }

    .video-container {
        position: relative;
        width: 100%;
        height: 100vh;
        overflow: hidden;
        margin-bottom: 100px;
        display: flex;
    }

    .video-container video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 1;
    }

    .video-container-transparent video {
        object-fit: cover;
        width: 100%;
        height: 100%;
    }

    .overlay-text {
        position: absolute;
        top: 50%;
        left: 0;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        transform: translateY(-50%);
        z-index: 1;
        padding: 0 10%;
        color: white;
    }

    .left-text {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .right-text {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .left-text h1 {
        font-size: 8rem;
        margin: 0;
    }

    .left-text p {
        font-size: 1.5rem;
        margin: 0.5rem 0 0;
        transform: translateX(54%) translateY(-100%);
    }

    .right-text h1 {
        font-size: 8rem;
        margin: 0;
    }

    .right-text p {
        font-size: 1.5rem;
        margin: 0.5rem 0 0;
        transform: translateY(-100%);
    }

    .grid-container {
        display: grid;
        gap: 15px;
        justify-content: center;
        align-items: center;
        margin: 0 10%;
        padding: 20px 0 20px 0;
    }

    .grid-body {
        min-height: auto;
        min-width: auto;
        display: grid;
        gap: 15px;
        grid-template-columns: repeat(4, 1fr);
        object-fit: cover;
    }

    .box {
        display: flex;
        justify-content: center;
        align-items: center;
        transition: 0.2s;
        object-fit: cover;
    }

    .box-style {
        border-radius: 1%;
        box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.5);
        object-fit: cover;
    }

    .box:hover {
        transform: scale(1.05);
    }

    img {
        width: 100%;
        height: 100%;
        align-content: center;
        justify-content: center;
        object-fit: cover;
        object-position: center;
        border-radius: 1%;
    }

    .blur-load {
        background-size: cover;
        background-position: center;
    }

    .blur-load.loaded>img {
        opacity: 1;
    }

    .blur-load>img {
        opacity: 0;
        transition: opacity 200ms ease-in-out;
    }

    main.blur {
        filter: blur(5px);
        pointer-events: none;
    }

    .menu-btn.disabled {
        pointer-events: none;
        opacity: 0.5;
        filter: blur(2px);
        transition: all 0.3s ease;
    }

    .lightbox-modal {
        display: none;
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 80vw;
        max-width: 800px;
        max-height: 100vh;
        justify-content: center;
        align-items: center;
        z-index: 10000;
    }

    .lightbox-img {
        max-width: 75%;
        max-height: 75%;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
    }

    .lightbox-close {
        position: absolute;
        top: 5px;
        right: 15px;
        font-size: 2.5rem;
        color: #fff;
        cursor: pointer;
        z-index: 10001;
    }

    @media (max-width: 1024px) {
        .video-container {
            height: 60vh;
        }

        .overlay-text {
            padding: 0 5%;
        }

        .left-text h1,
        .right-text h1 {
            font-size: 4rem;
        }

        .left-text p,
        .right-text p {
            font-size: 1rem;
        }

        .grid-body {
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }
    }

    @media (max-width: 600px) {
        .video-container {
            height: 50vh;
        }

        .overlay-text {
            padding: 0 2%;
        }

        .left-text h1,
        .right-text h1 {
            font-size: 3rem;
        }

        .left-text p,
        .right-text p {
            font-size: 0.9rem;
        }

        .grid-body {
            grid-template-columns: 1fr;
            gap: 15px;
        }
    }

    @media (min-width: 601px) {
        .video-container-transparent {
            width: calc(100% + 40%);
            margin-left: -20%;
        }
    }

    @media (max-width: 600px) {
        .video-container-transparent {
            width: 100%;
            margin-left: 0;
        }
    }