*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
    margin: 0;
    padding: 0;
    background: #eee;
    position: relative;
}
.container {
    border-radius: 5px;
    width: 100vw;
    height: 100vh;
    width: 100svw;
    height: 100svh;
    border: 10px double gold;
}
video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scaleX(-1);
}
.download-btn {
  top: 15px;
  right: 35px;
  z-index: 10;
  padding: 8px;
  display: none;
  font-size: 20px;
  cursor: pointer;
  position: fixed;
  aspect-ratio: 2 / 1;
  border: 1px solid yellow;
}
body:hover .download-btn {
  display: block;
}
.install-button {
  display: none;
  color: white;
  border: none;
  font-size: 16px;
  cursor: pointer;
  padding: 10px 20px;
  background: #007bff;
}
.install-button.show {
  display: block;
}
