html {
    height: 100%;
    overflow: hidden;
  }

body {
    cursor: url('cursor.png'), auto;
    background: url('bghidden.png')  no-repeat top center fixed;
    background-size: cover;
}

.trail {
    position: absolute;
    height: 16px; width: 16px;
    background-image: url("cursor.png");
}

/*
.content {
    width: 100%;
    height: 100%;
    position: fixed;
    background: no-repeat url('knights.png');
    background-position: center;
    background-size: 300px;
}

.knights {
    background: no-repeat url('knightstransparency.png');
    background-position: left;
    background-size: 300px;
    min-height: 300px;
    padding-top: 300px;
}
*/
  
.wavy {
    animation-name: wavy;
    animation-duration: 5s;
    animation-timing-function: ease;
    animation-iteration-count: infinite;
    position: relative;
    top: 0;
    left: 0;
  }
  @keyframes wavy {
    0% {
      top: 0px;
      left: 0px;
    }
    25%{
        left: 2px;
    }
    50% {
      top: -4px;
    }
    55%{
        left: 0px;
    }
    80%
    {
        left: -2px;
    }
    100% {
      top: 0px;
      left: 0px;
    }
  }