.mouse_move {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  color: rgb(250, 250, 250);
}
.mouse_move h2 {
  position: relative;
  font-size: 150px;
  color: rgb(250, 250, 250);
  font-family: fabscript;
}

.mouse_move p {
  font-family: fabfont;
  font-size: 150%;
  margin: 0 10px;
}

.mouse_move p::first-letter {
  font-size: 200%;
}

.mouse_move img {
  position: absolute;
}
#img1 {
  top: 80px;
  left: 80px;
  height: 250px;
  width: 250px;
}
#img2 {
  bottom: 80px;
  right: 80px;
  height: 250px;
  width: 250px;
}

#fader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999999;
  pointer-events: none;
  background: rgb(10, 10, 10);
  animation-duration: 300ms;
  animation-timing-function: ease-in-out;
}

@keyframes fade-out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

#fader.fade-out {
  opacity: 0;
  animation-name: fade-out;
}

#fader.fade-in {
  opacity: 1;
  animation-name: fade-in;
}
