* {
  box-sizing: border-box;
}

html {
  height: 100%;
  background: #01081e;
  overflow: hidden;
}

body {
  height: 100%;
  margin: 0;
  background: #01081e;
  overflow: hidden;
}

.landing {
  display: grid;
  width: 100vw;
  height: 100vh;
  place-items: center;
  background: #01081e;
  overflow: hidden;
}

.landing img {
  display: block;
  width: min(100vw, calc(100vh * 1.777));
  max-width: 100vw;
  max-height: 100vh;
  height: auto;
}
