/*
*  Copyright (c) 2016 The WebRTC project authors. All Rights Reserved.
*
*  Use of this source code is governed by a BSD-style license
*  that can be found in the LICENSE file in the root of the source
*  tree.
*/

canvas {
  background-color: #ccc;
  --width: calc(45%);
  width: var(--width);
  height: calc(var(--width) * 0.75);
  margin: 1em;
  vertical-align: top;
}

video {
  --width: calc(45%);
  width: var(--width);
  height: calc(var(--width) * 0.75);
  margin: 1em;
  object-fit: cover;
}
