body,html{
    padding: 0;
    margin: 0;
    height: 100%;
    width: 100%;
}

body{
    font-family: Helvetica, sans-serif;
    overflow: hidden;
}
/*animation*/
@keyframes changeColor {
    25% {background-color: skyblue;}
    25% {background-color: dodgerblue;}
    25% {background-color: lightcyan;}
}
/* Chrome, Safari, Opera */
@-webkit-keyframes changeColor {
    25% {background-color: skyblue;}
    25% {background-color: dodgerblue;}
    25% {background-color: lightcyan;}
}

@keyframes bounceFont {
    50% {font-size: 20px;color:darkmagenta}
}
/* Chrome, Safari, Opera */
@-webkit-keyframes bounceFont {    
    50% {font-size: 20px; color:darkmagenta}
}

/* standard*/
@keyframes discoBox {
    from {left: -100%;top:5%;}
    to {left: 150%;top:5%;}
}
/* Chrome, Safari, Opera */
@-webkit-keyframes discoBox {
    from {left: -100%;top:5%;}
    to {left: 150%;top:5%;}
}

@-webkit-keyframes moveHello {
    from {left: 0%;top:5%;}
    to {left: 120%;top:5%;}
}

#moveHello {
     position:absolute;
     width:100px;
	 height:500px;
	 animation: moveHello 10s linear forwards;
  }

@keyframes hello {
    0%   {left: 0%;}
    10%  {left: 1%;} 
    15%  {left:3%;}
    20%  {left: 4%;}
    25%  {left:7%;}
    30%  {left: 9%;}
    35%  {left:13%;}
	40%  {left: 16%;}
    45%  {left:21%;}
	50%  {left: 25%;}
    55%  {left:31%;}
	60%  {left: 36%;}
    65%  {left:43%;}
    70%  {left: 49%;}
    75%  {left:57%;}
    80%  {left: 64%;}
    85%  {left:73%;}
    90%  {left: 81%; height:100px; width:100px} 
   100%  {left: 100%;height:70px; width:110px}
}

#hellohello{ 
      position:absolute;
      width:100px;
	  height:100px;
	  animation: hello 10s 2s infinite ease;
}

 @keyframes pnggraphic {
    100% {transform: rotate(360deg);}
} 	

#pnggraphic{
    position: absolute;
    left:-200%;
    top:-150%;
    z-index: 100;
    height: 800px;
    width: auto;
    opacity: 0.9;
   animation: pnggraphic 3s 1s alternate infinite;
}

#animationBox{
    margin: 0 auto;
    position: absolute;
    overflow: hidden;
    z-index: 1;
    left: 0;
    right: 0;
    width: 90%;
    height: 85%;
    margin-top: 1%;
    
    background-color: deepskyblue;
    -webkit-animation-name: changeColor; /* Chrome, Safari, Opera */
    -webkit-animation-duration: 8s; /* Chrome, Safari, Opera */
    -webkit-animation-iteration-count: infinite; /* Chrome, Safari, Opera */

    animation-name: changeColor;
    animation-duration: 8s;
    animation-iteration-count: infinite;
}

.discoBox{
    margin: 0 auto;
    position: relative;
    float:left;
    width: 100px;
    height: 100px;
    background-color: red;

    /* Chrome, Safari, Opera */
    -webkit-animation-name: discoBox;
    -webkit-animation-duration: 5s;
    -webkit-animation-timing-function: linear;
    -webkit-animation-delay: 2s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-direction: alternate;
    /* Standard syntax */
    animation-name: discoBox;
    animation-duration: 5s;
    animation-timing-function: linear;
    animation-delay: 2s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}


h1{
    position: absolute;
    top: 0;
    bottom: 0;
    line-height: 550px;
    text-align: center;
    font-size: 900px;
    font-weight: normal;
    margin: 0;
    padding: 0;
    -webkit-animation-name: bounceFont; /* Chrome, Safari, Opera */
    -webkit-animation-duration: 3.5s; /* Chrome, Safari, Opera */
    -webkit-animation-iteration-count: infinite; /* Chrome, Safari, Opera */
    -webkit-animation-timing-function: ease;
     /* Standard syntax */   
    animation-name: bounceFont;
    animation-duration: 3.5s;
    animation-iteration-count: infinite;
    animation-timing-function: ease;
}

#vectorgraphic{
    position: absolute;
    left:-100%;
    z-index: 10;
    height: 700px;
    width: auto;
    opacity: 1;
     /* Chrome, Safari, Opera */
    -webkit-animation-name: discoBox;
    -webkit-animation-duration: 7s;
    -webkit-animation-delay: 2s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: ease;
    /* Standard syntax */   
    animation-name: discoBox;
    animation-duration: 7s;
    animation-delay: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: ease;
}


