
.background-slide-two
{
    background: url("https://theta-dottrina.neocities.org/tile2.png") repeat;
    width: 999999px;
    height: 999999px;
    animation: slide2 120s linear infinite;
    position: fixed;
    z-index: -10;
}

@keyframes slide2
{
    0% 
    {
        transform: translate3d(-250px, -5000px, 0);
    }
    100% 
    {
        transform: translate3d(0px, 0px, 0);
    }
}

body {
  background-color: white;
  color: white;
  font-family: Verdana;
}