@charset "UTF-8";

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  width: 100%;
  min-height: 100%;
}

body {
  background: #000;
}

.video-page {
  width: 100%;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.video-wrap {
  width: 100vw;
  height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100vw;
  max-height: 100svh;
  object-fit: contain;
  background: #000;
}
