@media screen and (min-width: 800px) {
  .page {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 95vw;
    height: 95vh;
    margin: auto;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .page div {
    width: 25%;
  }
  .page div h1 {
    font-size: 2.5vw;
    line-height: 2.8vw;
    color: white;
    margin: 0;
    text-shadow: 0px 5px 20px rgba(0, 0, 0, 0.4);
  }
  .page div h2 {
    font-size: 1.2vw;
    line-height: 1.5vw;
    color: rgba(255, 255, 255, 0.8);
    text-shadow: 0px 5px 20px rgba(0, 0, 0, 0.4);
  }
  .page div span {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 0.2vw;
    border-radius: 0.5vw;
  }
  .left {
    text-align: left;
  }
  .right {
    text-align: right;
  }
}

@media screen and (max-width: 800px) {
  .page {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 95vw;
    height: 82vh;
    margin: auto;
    margin-top: 3vh;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .page div {
    width: 90%;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.2);
    padding: 2vw;
    border-radius: 3vw;
  }
  .page div h1 {
    font-size: 5vw;
    line-height: 6vw;
    color: white;
    margin: 0;
    text-shadow: 0px 5px 20px rgba(0, 0, 0, 0.4);
  }
  .page div h2 {
    font-size: 3vw;
    color: rgba(255, 255, 255, 0.7);
    text-shadow: 0px 5px 20px rgba(0, 0, 0, 0.4);
  }
}
/*# sourceMappingURL=landing.css.map */