@charset "UTF-8";
/*
    Stylesheet for index.php
    © by Paul Weiser 2019
    https://paulweiser.de
*/
#homepage_body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  width: 100vw;
  font-size: 100%;
}

#homepage_left, #homepage_right {
  width: 50vw;
  height: 100%;
}

#homepage_left {
  z-index: 0;
}

#homepage_sentences {
  color: white;
  font-size: 1.5em;
  height: 35vh;
  width: 65%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  text-align: left;
}

#homepage_sentences img {
  margin-right: 1.5em;
}

#homepage_right {
  background-color: white;
  z-index: 10;
}

/*#homepage_right::after {
    position: absolute;
    top: 40vh;
    right: 50vw;
    content: '';
    width: 0;
    height: 0;
    border-right: solid 10vh white;
    border-bottom: solid 10vh transparent;
    border-top: solid 10vh transparent;
}*/
#homepage_right::after {
  content: '';
  right: 50%;
  top: 42.5vh;
  position: fixed;
  background: white;
  height: 15vh;
  width: 6vh;
  border-radius: 10em 0 0 10em;
}

@media only screen and (max-width: 600px) {
  #homepage_body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    height: 100vh;
    font-size: 80%;
  }
  #homepage_left {
    height: 50vh;
  }
  #homepage_right {
    height: 50vh;
  }
  #homepage_left, #homepage_right {
    width: 100vw;
  }
}
/*# sourceMappingURL=homepage.css.map */