@import url(https://fonts.googleapis.com/css?family=Squada+One);
.hmcont {
    overflow: hidden;
    border: 1.5px solid #079367;
    width: 50%;
    padding: 20% 0%;
    text-align: center;
    position: relative;
}
.hm {
    font-size: 15vw;
    font-family: 'Squada One', cursive;
    background: #11BD87;
    color: #FFF;
    box-shadow: 0px -2px 10px rgba(0, 0, 0, 0.2), 0px -2px 1px #079367;
    position: absolute;
    top: 0px;
    width: 100%;
    height: 100%;
    padding-top: 15%;
    left: 0px;
    line-height: 1;
}
@media (min-width: 768px) {
     .hm {
          font-size: 7vw;
     }
}

.hm::after {
    content: attr(label);
    display: block;
    font-size: 30%;
}
.hmmove {
	animation: push 0.7s ease-in forwards;
	-webkit-animation: push 0.7s ease-in forwards;
	-moz-animation: push 0.7s ease-in forwards;
	-ms-animation: push 0.7s ease-in forwards;
}
@keyframes push {
	0% { top: 0%;}
	100% { top: 110%;}
}
@-webkit-keyframes push {
	0% { top: 0%;}
	100% { top: 110%;}
}
@-moz-keyframes push {
	0% { top: 0%;}
	100% { top: 110%;}
}
@-ms-keyframes push {
	0% { top: 0%;}
	100% { top: 110%;}
}
