body{
    display: block;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    margin: 0 0 0 0;
	font-size: 14px;
    overflow: hidden;
    user-select: none;
    /* background-image: url("../img/bg.png"); */
    /* background-size:auto;
    background-repeat: repeat; */
    
}
#home{
    display: block;
    position: relative;
    width:  fit-content;
    height: fit-content;
    left: 15px;
    top: 15px;
    background: radial-gradient(closest-side, #ffffff, #707070);
    z-index: 100000;
    padding: 5px 5px 5px 5px;
    border-radius: 20px;
    cursor: pointer;
}

#container{
    position: absolute;
    left:0%;
    top: 0%;
    width: 100%;
    height: 100%;
    /*background-image: url("../img/3dgradbg.jpg");
    background-size:cover;
    background: radial-gradient(closest-side, #ffffff, #b1afa9);
    background-color: #f0f0f0;*/
    
}
#canvas{
    position: absolute;
    left:50%;
    top: 0%;
    width: 50%;
    height: 100%;
}
#loader img{
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    width: auto;
    height: auto;
    transform: translate(-50%,-50%);

    /*
    border: rgb(255, 255, 255) solid 2px;
    padding: 25px 25px 25px 25px;
    background: radial-gradient(closest-side, #ffffff, transparent);
    border-radius: 10px;
    */
}
#loader{
    display: block;
    width: 100%;
    height: 100%;
    /*background-image: url("../img/3dgradbg.jpg");*/
    background-size:cover;
}
#loadertxt{
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    color: rgb(107, 0, 0);
    font-weight: bolder;
    font-size: 30px;
    font-family: Arial, Helvetica, sans-serif;

}
#next,#previous{
    display: none;
    position: absolute;
    width: fit-content;
    height: fit-content;
    left: 50%;
    bottom: 0%;
    transform: translate(50%,-50%);
    background-color: rgb(70, 70, 70);
    color: white;
    z-index: 10;
    padding: 15px 15px 15px 15px;
    border-radius: 10px;
    cursor: pointer;
}
#previous{
    transform: translate(-100%,-50%);
}