@import "/assets/css/portrait.css" screen and (orientation: portrait);
@import "/assets/css/landscape.css" screen and (orientation: landscape);
@import "/assets/css/base/site.css" screen;

@media only screen and (orientation: portrait) {
  :root {
    --vmin: calc(100vw/100);
  }
}

@media only screen and (orientation: landscape) {
  :root {
    --vmin: calc(100vh/100);
  }
}
