body {
  min-height: 100vh;
  background: url("cockback.png") repeat;
  animation: scrolling 10s linear infinite;
}
@keyframes scrolling {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 0 900px;
  }
}

@keyframes blink {
  0% { opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { opacity: 0; }
}

.blinking-eyelids {
  animation: blink 0.1s forwards;

}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.spinning-tape {
  animation: spin 2s linear infinite;
  transform-origin: center center;
}

#lowerjaw {
  transition: transform 0.2s ease-in-out;
}

h1{
  color: powderblue;
  text-align: center;
}

p{
      color: powderblue;
      font-size: 24px;
      position: absolute;
      top: 150px;
      left: 200px; 
    }
#target-p{
  
color: powderblue;
      font-size: 24px;
      position: absolute;
      top: 150px;
      left: 1600px; 
  
}