html {
  font-family: sans-serif;
}
  .container {
    width: 100%;
    text-align: center;
  }
  #video-device {
    max-width: 100%;
    transition: all 0.5s ease;
  }

  .blurred {
    -webkit-filter: blur(5px);
    -o-filter: blur(5px);
    -ms-filter: blur(5px);
    filter: blur(5px);
    transition: all 0.5s ease;
  }

  #video-container {
    position:relative;
    /* padding: 3% 0%; */
    background-color: black
  }


  #video-container > h3{
    position:absolute;
    padding: 30px;
    color:red;
  }

  #controls {
    width: 100%;
    position: absolute;
    top: 60%; left: 50%;
    transform: translate(-50%, -50%);
    z-index: 999
  }
  #video-container button{
    margin: 30px;
    padding: 20px 30px;
    font-size: 1.1em;
    color: white;
    background-color: rgba(0,0,0,0);
    border: solid white 2px;
    border-radius: 20px;
    cursor: pointer;
  }

  #mute-control {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translate(-65%, 0%);
  }

  .sidebar {
    position: absolute;
    /* background-color: red; */
    height: 100%;
    width: 50%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .sidebar-right {
    top:0;
    right: 0;
    max-height: 50%;
    padding: 20px 20px;
  }

  .preview {
    max-width: 100%;
    padding: 0px;
    position: relative;
    transform-origin: 0% 0%;
  }

  .preview-container {
    position: relative;
    /* padding: 15px 15px; */
    margin: 0px 5%;
    margin-top: 60px;
    text-align: center;
    max-width: 30%;
    z-index: 0;
    transition: all 0.1s;
    transform: scale(1);

  }

  .preview-container > video{
    border: solid white 1px;
  }

  .preview-btn > p{
    max-width: 10%;
    color: white;
    padding: 7px 10px;
    border: solid 1px white;
    border-radius: 7px;
    margin: auto;
    margin-top: 10px;
    font-size: 130%;
  }

  .not-animated {
    transition: all 0.1s;
    transform: scale(1);
  }

  .animate {
    transition: all 0.1s;
    transform-origin: 200% 200%
    /* scale(5) translate(-0px,0); */
  }

  #loading-video {
    position: absolute;
    top: 40%;
    left: 48%;
    text-align: center;
    margin: auto;
    z-index: 1;
    transform: translate(-50%, 0%);
    padding: 30px
  }

  #loading-video > h2 {
    padding: 30px;
    border: 2px solid;
    border-color: black;
    border-radius: 20px;
  }
