body {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
    background-color: #fff;
    font-family: Arial, sans-serif;
  }
  
  #container {
    display: flex;
    align-items: center;
  }
  
  #video-container {
    margin-right: 20px;
    position: relative;
    width: 70vw; /* Set the video viewport to 70% of the screen width */
    height: 100vh; /* Set the video viewport to 100% of the screen height */
    overflow: hidden;
  }
  
  #buttons-container {
    text-align: right;
  }
  
  button {
    padding: 10px;
    margin: 5px;
    font-size: 16px;
    cursor: pointer;
  }
  
  #treeCanvas {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  