/*ease*/

.ease { transition: all .2s ease-in-out; }

/*ease*/




.outline{
	-webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: black;
}



/*no footer*/

#footer {display:none;}

/*no footer*/




.ignoreme {
    pointer-events:none;
}




/* use this to make your background have a dot grid */
.get-dotty {
background-size: 40px 40px;
background-image: radial-gradient(circle, #000000 1px, rgba(0, 0, 0, 0) 1px);
}
/* use this to make your background have a dot grid */





/* spin */
.spinme {
position: fixed; /* make sure it stays put so we can see it! */
animation: rotate 1s linear infinite;
animation-play-state: paused;
animation-delay: calc(var(--scroll) * -1s);
}
/* spin */




.rotation-station {
    -webkit-animation:spin 16s linear infinite;
    -moz-animation:spin 16s linear infinite;
    animation:spin 16s linear infinite;
}
@-moz-keyframes spin { 100% { -moz-transform: rotate(-360deg); } }
@-webkit-keyframes spin { 100% { -webkit-transform: rotate(-360deg); } }
@keyframes spin { 100% { -webkit-transform: rotate(-360deg); transform:rotate(-360deg); } }