.container {
      display: flex;
      height: 100%;
    }
    
    .left-box {
      background-color: #262B4C;
      flex-basis: 40%;
      padding: 0px;
      color: white;
      font-family: 'League Spartan', sans-serif;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      margin: 0;
    }
    
    .left-box h2 {
      font-size: 35px;
      margin-top: 50px;
    }
    
    .left-box p {
      font-size: 16px;
      font-family: Arial, sans-serif;
      margin-top: -50px;
    }
    
    .left-box .price {
      font-family: 'Open Sans Light', sans-serif;
      font-weight: bold;
      font-size: 28px;
      margin-top: 50px;
      margin-bottom: 0px;
    }
    
    .left-box .video-container {
      position: relative;
      width: 300px;
      height: 200px;
      background-color: #262B4C;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px; 
    }
    
    .left-box video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
      cursor: pointer;
    }
    
    .right-box {
      flex-basis: 60%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      background-color: #E8E8E8;
      padding: 0px;
    }
    
    .right-box img {
      max-width: 1000px;
      max-height: 1000px;
    }
    
    @media (max-width: 480px) {
      .container {
        flex-direction: column;
      }
      
      .left-box, .right-box {
        flex-basis: 100%;
        height: 600px;
      }
      
      .left-box h2 {
        font-size: 35px;
        margin-top: 50px;
      }
      
      .left-box p {
        font-size: 16px;
        font-family: Arial, sans-serif;
        margin: 0;
        padding: 0;
      }
      
      .left-box .price {
        font-family: 'Open Sans Light', sans-serif;
        font-weight: bold;
        font-size: 28px;
        margin: 0;
        padding: 0;
      }  
      
      .left-box .video-container {
        width: 250px;
        height: 150px;
        margin-bottom: 10px;
      }
      
      .right-box img {
        max-width: 400px;
        max-height: 400px;
      }