
/*
 * BAckground effect
 */

    .background {
      position: absolute;
      top: 0;
      left: 0;
      height: 100vh;
      width: 100vw;
      background-image: url("images/mother_earth.jpeg");
      background-size: cover;
      z-index: -2;
    }

    .background .water {
      position: absolute;
      background-image: url("images/mother_earth_masked.png");
      background-size: cover;
      top:0;
      left:0;
      height: 100vh;
      width: 100vw;
      filter: url("#turbulence");
      z-index:-1;
    }

header{
  margin:auto;
}

body{
  color:#FFF;
}

.main-text {
  margin-top: auto;
  margin-bottom: auto;
  height: auto%;
}