
        body, html {
            margin: 0;
            padding: 0;
            font-family: Arial, sans-serif;
            height: 100%;
            align-items: center;
        }
        .header {
            position: fixed;
            top: 0;
            left: 1vw;
            right: 1vw;
            background: white;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1% 2%;
            z-index: 1000;
        }
        .logo {
            height: 50px;
        }
        @media (max-width: 768px){
            .logo {
            width: auto;
            height: 40px;
            }
        }

        .language-selector img {
            width: 50px;
            height: 50px;
            margin-left: 10px;
            cursor: pointer;
        }
        @media (max-width: 768px){
            .language-selector img {
            width: 35px;
            height: 35px;
            }
        }
        .nav {
            position: fixed;
            top: 70px;
            left: 0;
            right: 0;
            background: orange;
            padding: 10px 0;
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 1000;
        }
        @media (max-width: 768px){
            .nav {
            top: 50px;
            font-size: xx-small;
            padding: 5px 0;
            }
        }

        .nav a {
            color: white;
            text-decoration: none;
            padding: 0 15px;
        }
        .content {
            padding-top: 120px;
            padding-bottom: 50px;
            display: flex;
            flex-direction: column;
            text-align: center;
        }
        #videoPlayer {
            margin-top: 5vw;
            width: 80vw;
            max-width: 1920px;
            max-height: auto;
        }
        @media (max-width: 768px){
            #videoPlayer{
                margin-top: 20vw;
            }
        }
        .product-images {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            margin: 20px 0;
        }
        .product-images img {
            width: 18%;
            margin: 10px 0;
            cursor: pointer;
        }
        .footer {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: #f8f8f8;
            text-align: center;
            padding: 10px 0;
        }
        .video-container{
            width: 100vw;
        }
