html{
    overflow: hidden;
}
body{
    background-image: url(/faraway/far_img/far_bg.webp);
    background-size:cover;
    background-color: black;
}
.nothing_chng{
    display: absolute;
    background-image: url(/faraway/far_img/background_scroller.webp);
    background-size: contain;
    width: 50px;
    height: 50px;
    animation:scaler 5s steps(6) infinite;
    color:rgb(255, 255, 255);
    font-size: 100px;
    text-shadow:
                -2px -2px 0 #000,
                2px -2px 0 #000,
                -2px 2px 0 #000,
                2px 2px 0 #000,
                -3px 0px 0 #000,
                3px 0px 0 #000,
                0px -3px 0 #000,
                0px 3px 0 #000;
}
#counter_update{
    height: fit-content;
    width: fit-content;
    padding-top: 2px;
    padding-bottom: 2px;
    padding-left: 5px;
    padding-right: 5px ;
    border:2px dashed white;
    border-radius: 25%;
    background-image: url(/linksimg/link_box_bg.png);
    background-size:20%;
    position: absolute;
    transform: translate(20%,20%);
    pointer-events: none;
    z-index: 999;
    color:white;
    font-size: 30px;
    font-family: "Geo", sans-serif;
    box-sizing: border-box;
}
#count_text{
    height: fit-content;
    width: fit-content;
    padding: 15px;
    border:2px dashed white;
    background-color: white;;
    border-radius: 25%;
    background-image: url(/linksimg/link_box_bg.png);
    background-size:20%;
    position: absolute;
    top:80%;
    left: 10%;
    z-index: 1099;
    color:white;
    font-size: 30px;
    font-family: "Geo", sans-serif;
    box-sizing: border-box;
    visibility:hidden;
}
.item{
    position:absolute;
    animation-name:scrollLeft;
    animation-duration:5s;
    animation-timing-function: linear;
    animation-iteration-count:infinite;
    display: flex;
    flex-wrap: wrap;
    row-gap:20px;
    column-gap: 20px;
    height: 200px;
    width:50px;
    z-index: inherit;
}

#are_you_having_fun{
    color:rgb(255, 255, 255);
    font-size: 50px;
    font-family: "Geo", sans-serif;
    font-weight: 400;
    font-style: normal; 
    position: absolute;
    z-index: 99;
    animation: scrollLeft 3s infinite linear;
    text-decoration: none;
    top:30px;
}
.item1{
    animation-delay:calc(5s / 4 * (4 - 1) * -1) ;
}
.item2{
    animation-delay:calc(5s/4 * (4 - 2) * -1) ;
}
.item3{
    animation-delay:calc(5s / 4 * (4 - 3) * -1) ;
}
.item4{
    animation-delay:calc(5s/4* (4 - 4) * -1) ;
}
#wrapper{
    position: absolute;
    width: 300px;
    height:300px;
    overflow:hidden;
    animation:wrapper_1 2s infinite linear;

}
.wrapper2{
    position: relative;
    overflow: hidden;
    height: 23vh;
    width: 30vh;
    border-radius: 25%;
    border: inset 20px;
    border-color: rgb(43, 2, 21);
    background-color: rgb(39, 2, 30);
}
.wrapper_3d{
    left: 10px;
    top:10px;
    opacity:50%;
}
#allwrap{
    position: absolute;
    display: flex;
    flex-wrap: wrap;
    justify-content:space-evenly;
    row-gap: 20px;
    column-gap: 10px;
    padding-top: 30px;

}
#overlay{
    background-image: url(/faraway/far_img/static_overlay.webp);
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 90;
    opacity: 5%;
    pointer-events: none;
}
#follower{
    position: absolute;
    width: 200%;
    height: 5%;
    background-color: rgb(255, 255, 255);
    mix-blend-mode:hue;
    left: -50%;
    top:50%;
    z-index: 101;
    transform: translate(0%,-50%);
    pointer-events: none;
}
#follower2{
    position: absolute;
    width: 3%;
    height: 200%;
    background-color: rgb(255, 255, 255);
    mix-blend-mode:hue;
    transform: translate(-50%,-10%);
    left: -50%;
    z-index: 101;
    pointer-events: none;
}

@keyframes scaler{
    0%{
        opacity: 20%;
    }
    50%{
        opacity:80%;
    }
    100%{
        opacity: 20%;
    }
}
@keyframes scrollLeft{
    from{
        right:-20%;
    }
    to{
        right: 100%;
    }
}
@keyframes wrapper_1{
    0%{

    }
}
@keyframes rotate_y{
    from{
        transform: rotatey(0deg);
    }
    to{
        transform: rotatey(360deg);
    }
}
@keyframes rotate_x{
    from{
        transform: rotatex(0deg);
    }
    to{
        transform: rotatex(360deg);
    }
}