body {
    margin: 0px auto;
    background-color: #000000;
}

#container {
    margin: 0px auto;
    width: 100%;
    height: 100%;
}

#videoElement {
    margin: 0px auto;

    z-index:1;

}

.video-container {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  /* overflow: hidden; */

}

.video-container .video-element {
   /* Make video to at least 100% wide and tall */
  min-width: 100%;
    min-height: 100%;
   /* Setting width & height to auto prevents the browser from stretching or squishing the video */
   width: auto;
   height: auto;

   /* Center the video */
   position: absolute;

   /* top: 50%;
   left: 50%;
   transform: translate(-50%,-50%); */
}

.video-container-split {
  display: flex;
  width: 100vw;
  height: 100vh;
}
.video-split-left {
  width: 50%;
  /* height: 100%; */
  /* object-fit: cover; */
  left: 0;
}
.video-split-right {
  width: 50%;
  /* height: 100%; */
  /* object-fit: cover; */
  right: 0;
}


.video-mask{
  width: 350px;
  border-radius: 10px;
  -webkit-transform: translateZ(0);
  box-shadow: 0 19px 51px 0 rgba(0,0,0,0.16), 0 14px 19px 0 rgba(0,0,0,0.07);
  overflow: hidden;
}

.pipVideo-upper-left {
  position: absolute;
  cursor: move;
  display: none;
  margin: 0px auto;
  height: 25%;
  z-index: 90;
  border: 10px solid transparent;
  top: 10px;
  left: 10px;
}

.pipVideo-lower-right {
  position: absolute;
  cursor: move;
  display: none;
  margin: 0px auto;
  height: 25%;
  z-index: 90;
  border: 10px solid transparent;
  bottom: 10px;
    right: 10px;
}


#titleBar {
  position: fixed;
  z-index: 10;
  display: inline-flex;
  bottom: 60px;
  margin: 0px auto;
  padding: 10px 30px;
  width: 100%;
  background-color: rgb(255, 255, 255);
  align-items: center;
  transition-property: opacity;
  transition-duration: 0.5s;
  opacity: 0.0
}

#titleBarLogo {
  display: inline-block;
}

#titleBarText {
  font-family: Google Sans, Roboto, Arial, Helvetica, sans-serif;
  color: #5f6368;
  font-size: 1.8rem;
  line-height: 2.1rem;
  margin-left: 30px;
  white-space: nowrap;
}

/* #titleBarText::before{
  content: "Googler Name";
}

#titleBarText::after{
  content: "Googler Role";
} */

#logo {
  position: fixed;
  z-index: 20;
  top: 0;
  right: 0px;
  margin: 30px 30px auto;
  width: 10%;
  transition-property: opacity;
  transition-duration: 0.5s;
  opacity: 0.0;
}

#banner {
  position: absolute;
  z-index: 30;
  display: inline-flex;
  margin: 0px auto;
  width: 100%;
  height: 100%;
  background-color: rgb(255, 255, 255);
  align-items: center;
  transition-property: opacity;
  transition-duration: 0.5s;
  opacity: 0.0;
}

#bannerWrapper {
  text-align: center;
  width: 100%;
}

#overlayText{
  font-family: Google Sans, Roboto, Arial, Helvetica, sans-serif;
  position: absolute;
  top: 20px;
  left: 40px;
  color: black;
  white-space: nowrap;
  text-shadow: -1px 0 white, 0 1px white, 1px 0 white, 0 -1px white;
  font-size: 18px;
  opacity: 0.0;
  z-index: 40;
}

.vl {
    border-left: 6px solid rgb(132, 156, 221);
    height: 300px;
    z-index: 100;
    float: right;
    display: block;
    position: absolute;
    right: 20px;
    top: 25%;
    opacity: 0.25;
    /* //filter: alpha(opacity=40); */
  }

.vl:hover {
    opacity: 1.0;
    /* filter: alpha(opacity=100); */
}

.sidenav{
z-index: 2000;
}

