*{box-sizing:border-box}
html,body{margin:0;width:100%;min-height:100%;background:#000}
body{overflow:hidden}
.landing{
  position:relative;
  width:100vw;
  height:100svh;
  background:#000;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}
.art{
  display:block;
  width:100%;
  height:100%;
  object-fit:contain;
  object-position:center center;
  background:#000;
  user-select:none;
  -webkit-user-drag:none;
}
.ig-link{
  position:absolute;
  left:0;
  bottom:0;
  width:30%;
  height:11%;
  z-index:2;
}
@media (orientation:landscape){
  .art{
    width:auto;
    height:100%;
    max-width:100%;
  }
}
