@font-face {
  font-family: "Avenir-Next";
  src: url("../fonts/Avenir-Next-Medium.woff2") format("woff2"),
    url("../fonts/Avenir-Next-Medium.woff") format("woff"),
    url("../fonts/Avenir-Next-Medium.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
}

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

body {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100svh;
  background: #333;
  color: #fff;
}

.holding-container {
  width: 30vw;
  text-align: center;
  box-sizing: border-box;
}

.holding-image {
  display: block;
  width: 100%;
  height: auto;
}

.holding-container p {
  font-family: "Avenir-Next", sans-serif;
  text-align: center;
  margin: 1rem 0 0 0;
  line-height: 1.5;
}

/* Mobile portrait */
@media (max-width: 900px) and (orientation: portrait) {
  .holding-container {
    width: 100vw;
  }
}

/* Mobile landscape */
@media (max-width: 900px) and (orientation: landscape) {
  .holding-container {
    width: 55vw;
  }
}