/* cursors + fonts */

@import url('https://fonts.googleapis.com/css2?family=Yomogi&display=swap');

@font-face {
font-family:lovely;
src:url("/assets/fonts/LOVELY%20HEART.ttf");
}

@font-face {
    font-family:"crayon";
    src:url("/assets/mikiyu-crayon2.TTF");
}

:root {
    --pink: #ffa9ec;
    --orange: #ffc9ae;
    --yellow: #ffea9e;
    --green: #9dffdf;
    --blue: #a2daff;
    --purple: #e4b1ff;
    
    --dpink: #ff3595;
    --dorange: #ff8a3b;
    --dyellow: #ffb74a;
    --dgreen: #00e89c;
    --dblue: #56a2ff;
    --dpurple: #bb7fff;
    
    --cream: #ffdcb9;
    --choco: #bd492c;
}

 html {
        cursor:url(/assets/pikanormal.png), auto;
    }
    
    	a:hover {
    		cursor:url(/assets/pikalink.png), auto;
    	}
    	
    	abbr:hover {
    		cursor:url(/assets/pikahelp.png), auto;
    	}
    	
body {
  font-family: "comic sans ms", "yomogi", sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family:"lovely", "yomogi";
}

.sylveon {
    background: linear-gradient(to right, #f393fe, #ce93ff, #909cff, #8fd4ff, #90ffef, #93ff92, #e0fe93, #fde091, #ffba91, #ff939c, #fe92dc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight:bold;
}

.espeon {
    background: repeating-linear-gradient(to left, #f393fe, #ce93ff, #909cff, #8fd4ff, #90ffef, #93ff92, #e0fe93, #fde091, #ffba91, #ff939c, #fe92dc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight:bold;
    animation: rainbow 4s linear infinite;
      background-size: 200%;
  background-repeat: repeat-x;
}

@keyframes rainbow { 
            from {
                background-position: 0 0;
            }

            to {
                background-position: 200%;
            }
}