body {
	background-color: rgb(36, 37, 38);
}

.floating-box {
    position: fixed;
    width: 100px;
    height: 100px;
    z-index: 0;

    /*box-shadow: h-shadow v-shadow blur spread color inset;*/
    box-shadow: 0px 0px 10px 10px rgb(0,0,0);
}

.top-floating-box {
    position: fixed;
    width: 100px;
    height: 100px;
    background-color: rgb(36, 37, 38);
    z-index: 100;
}
