	<style>

/* =====================
   NAGA KIRI
===================== */

body::before{
content:"";
position:fixed;
top:50%;
left:-110vw;
width:110vw;
height:110vh;

background:url("https://www.restaurant-agriculture-41.com/img/naga-mojicat.webp") no-repeat center;
background-size:contain;

transform:translateY(-50%);
z-index:999999;
pointer-events:none;

animation:nagaKiri 12s linear infinite;
}


/* =====================
   NAGA KANAN
===================== */

body::after{
content:"";
position:fixed;
top:50%;
right:-110vw;
width:110vw;
height:110vh;

background:url("https://www.restaurant-agriculture-41.com/img/naga-mojicat.webp") no-repeat center;
background-size:contain;

transform:translateY(-50%) scaleX(-1);
z-index:999999;
pointer-events:none;

animation:nagaKanan 12s linear infinite;
}


/* =====================
   ANIMASI KIRI
===================== */

@keyframes nagaKiri{

0%{ left:-110vw; }

50%{ left:-10vw; }

100%{ left:130vw; }

}


/* =====================
   ANIMASI KANAN
===================== */

@keyframes nagaKanan{

0%{ right:-110vw; }

50%{ right:-10vw; }

100%{ right:130vw; }

}

</style>	 