body {
  background-color: #CC344A;
  background-image: url("/Assets/Pattern.min.bg.svg");
  background-repeat: repeat;

  margin: 0;
  overflow-x: hidden;
}

@media (orientation: portrait) {
  body {
    background-size: 50%;
  }
}

@media (orientation: landscape) {
  body {
    background-size: 30%;
  }
}

/* ---------- Core elements ---------- */

.page {
  width: 100vw;
  height: 100vh;

  display: flex;
  justify-content: center;
  align-items: center;
}

.window {
  background-color: white;
}

@media (orientation: portrait) {
  .page {
    align-items: start;
  }

  .window {
    width: 100%;
    height: 90%;
  }
}

@media (orientation: landscape) {
  .window {
    width: 50%;
    height: 85%;
    min-width: 60vw;
  }
}

.text {
  font-family: "Zilla Slab", Roboto Slab, 'Segoe UI', Roboto, system-ui, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
}

.image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (orientation: landscape) {
  .portraitOnly {
    display: none;
  }
}

@media (orientation: portrait) {
  .landscapeOnly {
    display: none;
  }
}