@font-face {
  src: url(../../fonts/frank/FrankfurterChrD/FrankfurterChrD.ttf);
  font-family: frank;
}
html { 
    background: url(wave_to_me.gif) no-repeat center center fixed; 
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
  }

 body {
    position: fixed;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
 }

  @media screen and (min-width: 320px) {
      img {
        max-width: 121vw;
        position: absolute;
        top: 75%;
        left: 62%;
        transform: translate(-50%, -50%);
      }
      .raine-drop {
        width: 50%;
      }
      p {
        font-size: 12vw;
        color: white;
        font-family: helvetica;
        font-family: frank;
        width: 98vw;
        word-break: break-all;
        z-index: 2;
        position: relative;
        text-align: center;
      }
      .cv-text {
        position: fixed;
        bottom: 15vh;
        display: block;
        margin: 0 auto;
      }
      .home-text {
        position: fixed;
        bottom: 5vh;
        display: block;
        margin: 0 auto;
      }
      span {
        color:#3dff00;
      }
  }

  @media screen and (min-width:568px) {
      img {
        max-width: 90vw;
        top: 76%;
        left: 57%;
      }
      .raine-drop {
        width: 20%;
      }
      p {
        font-size: 40pt;  
      }
  }

  @media screen and (min-width:700px) and (min-height:700px) {
    img {
        top: 50%;
        left: 50%;
        width: 90vw;
        max-width: 800px;
    }

    p {
        font-size: 40pt;
    }

    .raine-drop {
      width: 19%;
    }
}
.raine-drop {
  /* Adjust animation duration to change the element’s speed */
    animation: fly 50s linear infinite;
    pointer-events: none !important;
    top: 0;
    left: 0;
    transform: translateX(-120%) translateY(-120%) rotateZ(0);
    position: fixed;
    animation-delay: 1s;
    z-index: 999999;
    /* width: 50%; */
  }

 /* Keyframe values control where the element will begin
    and end its trajectory across the screen. Each rule
    represents a path the element follows across the screen. */


@keyframes fly {

	98.001%, 0% {
                display: block;
		transform: translateX(-200%) translateY(100vh) rotateZ(0deg)
	}

	15% {
		transform: translateX(100vw) translateY(-100%) rotateZ(180deg)
	}

	15.001%, 18% {
		transform: translateX(100vw) translateY(-30%) rotateZ(0deg)
	}

	40% {
		transform: translateX(-200%) translateY(3vh) rotateZ(-180deg)
	}

	40.001%, 43% {
		transform: translateX(-200%) translateY(-100%) rotateZ(-180deg)
	}

	65% {
		transform: translateX(100vw) translateY(50vh) rotateZ(0deg)
	}

	65.001%, 68% {
		transform: translateX(20vw) translateY(-200%) rotateZ(180deg)
	}

	95% {
		transform: translateX(10vw) translateY(100vh) rotateZ(0deg)
	}
}
