/* 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 {
    color: white;
    background-color: black;
    margin: 0;
    padding: 0;
    overflow: hidden;
    
@container {
    margin: auto;
  }

   /* Base overlay style */
.overlay {
    image-rendering: pixelated;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    user-select: none;
    pointer-events: none;
    background-size: 100px;
    z-index: -1;
    }
}
    /* First scrolling layer */
.overlay-1 {
    background-image: url("https://file.garden/Z5QoDhvEum7WuaUm/deltarune2.png");
    animation: bg-scroll 3.5s linear infinite;
}

/* Second scrolling layer (reversed direction) */
.overlay-2 {
    background-image: url("https://file.garden/Z5QoDhvEum7WuaUm/deltarune1.png");
    animation: bg-scroll 1.6s linear infinite reverse;
}


@keyframes bg-scroll {
    to {
        background-position: -100px -100px;
    }
}

#thoughtsholetext {
  img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  }
}

