* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  width: 100%;
  height: 100%;
  background: #000;
  overflow: hidden;
}

.page {
  width: 100vw;
  height: 100vh;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-video {
  width: min(42vw, 420px);
  height: auto;
  display: block;
  object-fit: contain;
}

@media (max-width: 768px) {
  .logo-video {
    width: min(68vw, 320px);
  }
}
