body{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: rgb(65, 163, 243);
    overflow: hidden;
}
#sun,#moon{
    border-radius:50% ;
}
#moon{
    box-shadow: 5px 5px 10px rgb(0, 0, 0,0.1);
    width: 170px;
    height: 170px;
    position: absolute;
    cursor:grab;
    background-color: rgb(109, 145, 182);
    left:30%;
    top:20%;
    transition: top 0.1 linear,left 0.1 linear;
}
#moon.overlapping{
    background-color: rgb(79, 105, 145);
}
#sun{
    background-color: rgb(253, 223, 102);
    height: 175px;
    width: 175px;
    box-shadow: 0 0 20px 10px rgb(253, 223, 102,0.6);
}