.nedry {
    position: relative;
    top: 0;
    left: 0;
}
  
htlm, .container {
    width: 95vw;
    height: 100%;
    bottom: 0;
    position: absolute;
}

.nedry-body {
    position: relative;
    top: 0;
    left: 0;
}

.nedry-head {
    position: absolute;
    top: 35px;
    left: 140px;
}

.nedry-hand{
    position: absolute;
    top: 155px;
    left: 265px;
    animation: handFrames linear 1s;
    animation-iteration-count: infinite;
    transform-origin: 50% 100%;
    -webkit-animation: handFrames linear 0.7s;
    -webkit-animation-iteration-count: infinite;
    -webkit-transform-origin: 50% 100%;
}

@keyframes handFrames{
    0% {
        transform:  rotate(-10deg) ;
    }
    50% {
        transform:  rotate(14deg) ;
    }
    100% {
        transform:  rotate(-10deg) ;
    }
}  