
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  background-color: #586430;
}

body, html {
  height: 100%;
  width: 100%;
  padding: 0;
  margin: 0;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  border: 0;
}

img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.wrap {
  display: flex;
  width: 100%;
  height: 100%;
}

@media only screen and (orientation: portrait) {
  .image-landscape { display: none; }
  .image-portrait { display: block; }
}

@media only screen and (orientation: landscape) {
  .image-landscape { display: block; }
  .image-portrait { display: none; }
}