.body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #000;
  -webkit-perspective: 2000px;
  perspective: 2000px;
  font-family: Inconsolata, monospace;
}

.canvas {
  position: fixed;
  left: 0%;
  top: 0%;
  right: auto;
  bottom: auto;
  display: block;
  width: 100vw;
  height: 100vh;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}

.top {
  position: absolute;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: auto;
  z-index: 999;
  background-image: url('../images/vines.webp');
  background-position: 0% 100%;
  background-size: cover;
}

.bottom {
  position: absolute;
  left: 0%;
  top: auto;
  right: 0%;
  bottom: 0%;
}

.bottom.flip {
  background-image: url('../images/vines.webp');
  background-position: 0px 0px;
  background-size: cover;
}

.facts {
  display: block;
}

.flip {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.gtag {
  position: fixed;
  left: 0%;
  top: 0%;
  right: auto;
  bottom: auto;
  display: block;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}

@media screen and (min-width: 1920px) {
  .top {
    background-image: url('../images/vines.webp');
    background-position: 0px 0px;
    background-size: auto;
  }

  .bottom.flip {
    background-image: url('../images/vines.webp');
    background-position: 0px 0px;
    background-size: auto;
  }
}

@media screen and (max-width: 991px) {
  .top {
    background-image: none;
    background-position: 0px 0px;
    background-size: auto;
  }

  .bottom.flip {
    background-image: none;
    background-position: 0px 0px;
    background-size: auto;
  }
}

@media screen and (max-width: 479px) {
  .bottom {
    min-width: 100vw;
  }

  .facts {
    padding: 5%;
  }
}

