/* © 2024 Sanchita Chaurasia. All Rights Reserved. */
@keyframes move-twink-back {
    from {
        background-position: 0 0;
    }
    to {
        background-position: -10000px 5000px;
    }
}

#star {
    opacity: 0.5;
}

.stars,
.twinkling {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: block;
}

.stars {
    background: #000 url(../assets/stars.png) repeat top
        center;
    z-index: 0;
}

.twinkling {
    background: transparent url(../assets/twinkling.png)
        repeat top center;
    z-index: 1;

    animation: move-twink-back 200s linear infinite;
}
/* © 2024 Sanchita Chaurasia. All Rights Reserved. */