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

@font-face {  
  font-family: notepad;  
  src: url( /font/notepad.ttf ) format("truetype");  
}  
	 
.morpheus {
  font-family: notepad, verdana, helvetica, sans-serif;
  font-size: 16pt;
}

div.container {
  min-height: 95%;
  width: 80%;
  margin: auto;
}

.ropes:hover
{
  -webkit-transform-origin: center 0;
  -webkit-animation-name: wackeln;
  -webkit-animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease-in-out;
  -moz-transform-origin: center 0;
  -moz-animation-name: wackeln;
  -moz-animation-duration: 3s;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: ease-in-out;
  transform-origin: center 0;
  animation-name: wackeln;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}
@-webkit-keyframes wackeln {
  0% {
    -webkit-transform: rotate(-20deg);
  }
  50% {
    -webkit-transform: rotate(20deg);
  }
  100% {
    -webkit-transform: rotate(-20deg);
  }
}
@-moz-keyframes wackeln {
  0% {
    -moz-transform: rotate(-20deg);
  }
  50% {
    -moz-transform: rotate(20deg);
  }
  100% {
    -moz-transform: rotate(-20deg);
  }
}
@keyframes wackeln {
  0% {
    transform: rotate(-20deg);
  }
  50% {
    transform: rotate(20deg);
  }
  100% {
    transform: rotate(-20deg);
  }
}
