body {
  margin: 0;
  padding: 0;
  animation: rainbow-bg 10s infinite;
  overflow: hidden;
  cursor: help;
}

.imageMain {
  background-image: url('trippy.gif');
  background-attachment: fixed;
  background-position: center;
  position: fixed;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
}

.him {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 70vh;
  cursor: zoom-in;
}

.con {
  position: absolute;
  bottom: 20px;
  width: 100vw;
  text-align: center;
}

.text {
  color: yellow;
  font-size: 400%;
  font-family: 'Brush Script MT', cursive;
}

.shake {
  animation: shake 0.5s infinite;
}

.hidden {
  display: none;
}

.specialImage {
  position: absolute;
  width: 30vw;
  height: 20vh;
  top: 20%;
  left: 30%;
  transform: translate(-50%, -50%);
  cursor: not-allowed;
}

@keyframes shake {

  0%,
  100% {
    transform: translateX(0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    transform: translateX(-10px);
  }

  20%,
  40%,
  60%,
  80% {
    transform: translateX(10px);
  }
}

@keyframes rainbow-bg {
  0% {
    background-color: red;
  }

  14% {
    background-color: orange;
  }

  28% {
    background-color: yellow;
  }

  42% {
    background-color: green;
  }

  57% {
    background-color: blue;
  }

  71% {
    background-color: indigo;
  }

  85% {
    background-color: violet;
  }

  100% {
    background-color: red;
  }
}