     @font-face
{
font-family: 'bmspace';
src: url('https://files.catbox.moe/le5485.TTF');
}



h4 {
  color: pink;
      font-family: 'bmspace';
}

body {
background-image: url('https://files.catbox.moe/cyyee6.gif');
background-repeat: repeat;    
color: white;
       
    }
    
    
    
  
   
 html 
 {
   cursor: url(https://ani.cursors-4u.net/anime/ani-13/ani1202.cur) auto;
 }


::-moz-selection { /* Code for Firefox */
  background: #fcee00;
  color: black;
  text-shadow: none;
}

::selection {
  background: #fcee00;
  color: black;
  text-shadow: none;
}

       
       

    
 /* floating animation */
.floating { 
    animation-name: floating;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    margin-left: 30px;
    margin-top: 5px;
}
 
@keyframes floating {
    0% { transform: translate(0,  0px); }
    50%  { transform: translate(0, 15px); }
    100%   { transform: translate(0, -0px); }
}

/* the blinkerrrrr */
.blink_me {
  animation: blinker 1s linear infinite;
}
@keyframes blinker {
  50% {
    opacity: 0;
  }
  