/* Background Layers */
.scrolling-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../Assets/images/bg/game-bg.webp');
    background-size: cover;
    background-repeat: repeat-y;

    z-index: 1;
}

.village-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../Assets/images/bg/village-bg.webp');
    background-size: cover;
    z-index: 2;
    transition: opacity 1.5s ease-in-out;
}
