* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html, body {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
}
.object {
  width: 100vw;
  height: auto;
  max-height: 100vh;
  max-width: calc(100vh * (4 / 3));
  aspect-ratio: 4 / 3;
  display: block;
}
