@import url('https://fonts.googleapis.com/css?family=Google+Sans:500,400,300');
.neway {
   animation-duration: 3s;
  animation-name: slide-in;
}
.neway span {
  display: inline-block;
  animation-duration: 5s;
  animation-name: grow-shrink;
}

@keyframes slide-in {
  from {
    translate: 150vw 0;
    scale: 160% 1;
  }

  to {
    translate: 0 0;
    scale: 100% 1;
  }
}


@keyframes grow-shrink {
  25%,
  75% {
    scale: 100%;
  }

  50% {
    scale: 120%;
  color: green
  }
}

@keyframes float {
  0% {
    transform: translate(0, 0px);
  }
  50% {
    transform: translate(0, 15px);
  }
  100% {
    transform: translate(0, -0px);
  }
}

p:hover, h1:hover, a:hover , h2:hover, h3:hover, h4:hover, h5:hover{
font-weight: bold;
color: green;
}
.hidup img:hover{scale: 103%;}