/* 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." */

 @keyframes animatedBackground {
        from {
            background-position: 0 0;
        }
        to {
            background-position: 100% 0;
        }
    }

    body {
        margin: 0;
        padding: 0;
        font-family: Arial, sans-serif;
        animation: animatedBackground infinite;
        background-image: url('https://shinsungumi.neocities.org/starrynightsky.webp');
    }

    /* Add additional styles for your content here */
    /* For example: */
    .content {
        padding: 20px;
        color: #fff;
    }