/* Makes a fixed background wrapper
which the user cannot interact with */

@font-face {
    font-family: 'futura';
    src: url('./futura-book-bt.ttf') format('truetype'); /* Chrome 4+, Firefox 3.5, Opera 10+, Safari 3—5 */
}  

body {
  font-family: 'futura';
  overflow: hidden;
  background-color: black;
}

.iframe-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

/* Make the iframe keep an aspect ratio, and
position it in the middle of its parent wrapper*/

.iframe-wrapper iframe {
  width: 100vw;
  height: 56.25vw; /* Given a 16:9 aspect ratio, 9/16*100 = 56.25 */
  min-height: 100vh;
  min-width: 177.77vh; /* Given a 16:9 aspect ratio, 16/9*100 = 177.77 */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.filter {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0,0,0,.5);
  backdrop-filter: blur(15px);
  z-index: 0;
}

.content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 50%;
  height: 50%;
  text-align: center;
  color: white;
  font-size: 1.5rem;
}

.content img {
  width: 30rem;
}

.content span {
  font-size: 1rem;
}

.footer {
  position: absolute;
  bottom: 1rem;
  width: 100vw;
  height: 5rem;
  text-align: center;
  color: grey;
}


.prevent-select {
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  user-select: none; /* Standard syntax */
}

@media only screen and (orientation: portrait) {
  .content img {
    width: 50vw;
  }
}

