/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: #fff0fc/*#ffecec*/;
  background-image: url(https://lluvia0x0.neocities.org/backgrounds/k_dp.gif);
  background-repeat: repeat;
  color: #ff69b4;
}
#sparkles{
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    pointer-events: none;

    z-index: 999999;

    display: block;
}
// <weight>: Use a value from 100 to 400
// <uniquifier>: Use a unique and descriptive class name
.playwrite-gb-j-<uniquifier> {
  font-family: "Playwrite GB J", cursive;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
// <weight>: Use a value from 300 to 700
// <uniquifier>: Use a unique and descriptive class name

.cormorant-garamond-<uniquifier> {
  font-family: "Cormorant Garamond", serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}
.rainbow:hover{
    animation: rainbowblink 4s linear infinite;
}

@keyframes rainbowblink{

    0%{
        color:#ffb8e3;
        text-shadow:0 0 4px #ffb8e3;
    }

    25%{
        color:#fff7b5;
        text-shadow:0 0 4px #fff7b5;
    }

    50%{
        color:#bde8ff;
        text-shadow:0 0 4px #bde8ff;
    }

    75%{
        color:#dcc7ff;
        text-shadow:0 0 4px #dcc7ff;
    }

    100%{
        color:#ffb8e3;
        text-shadow:0 0 4px #ffb8e3;
    }

}

