/* styles, style stuff background for EVITHING!! */
html {
    background-color: black;
    background-image: url('images/bg.gif');
    font-family: 'CHNOPixel'; font-size: 13.5pt; color: #d3f5d9;
}
.fade-in {
	opacity: 1;
	animation-name: fadeInOpacity;
	animation-iteration-count: 1;
	animation-timing-function: ease-in;
	animation-duration: 1s;
}

@keyframes fadeInOpacity {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
@font-face {                  
font-family: 'CHNOPixel';
src: url(https://humantooth.neocities.org/fonts/CHNOPixelCodePro-Regular.woff) format('woff');
font-weight: normal;
    color: #d3f5d9;
} 
        .floating {
            animation: float 2s ease-in-out infinite;
        }

        @keyframes float {
            0% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-20px);
            }

            100% {
                transform: translateY(0);
            }
        }
                .floating2 {
            animation: float 3s ease-in-out infinite;
        }
        .pluh {
    font-family: 'BBBInvader'; color: #ff0026;
        }
        @font-face {                  
font-family: 'BBBInvader';
src: url(https://humantooth.neocities.org/fonts/BBBInvader-Regular.woff) format('woff');
font-weight: normal;
font-style: normal;
} 
a {
color: #f54269;
  text-shadow: 2px 2x ##211c3d;
}
a:hover {
color: #ff6eb4;
}
.link {
  transition: all 200ms;
}
.link:hover {
  font-size: 18.7px;
  font-size-adjust: 12px;
}
b {
color: #42b5e3;
text-shadow: -2px 2px #42caff;
}