*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body
{
    background-color: #292D32;
}

/*----Scoll-Bar*----*/

body::-webkit-scrollbar{
	width: 12px;

}
body::-webkit-scrollbar-track{
	background: #181818;
}
body::-webkit-scrollbar-thumb{
	background-color: #01B8E0;
	border-radius: 20px;
	border: 3px solid #181818;
}
/*----Logo-header----*/

.logo-header{
    width: 100%;
    height: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.darshan-logo{
    position: relative;
    height: 100%;
    width: 150px;
	margin-left: 30px;
}
.aswdc-logo{
    position: relative;
    height: 100%;
    width: 120px;
	margin-right: 30px;
    margin-top: 20px;
    
}
.darshan-logo img{
    height: 100%;
    width: 100%;
    object-fit: contain;
}
.aswdc-logo img{
    height: 100%;
    width: 100%;
    object-fit: contain;
}
.startDiv
{
    color:rgb(217, 1, 80);
    font-size: 30px;
    height: 100px;
    position: absolute;
    text-align: center;
    background-color: lightcoral;
    opacity: 0.9;
    z-index: 1;
    font-family: 'Abril Fatface', cursive;
}

.box
{
    height: 20px;
    /* background-color: pink; */
    position: absolute;
    color: #FF8888;
    font-size: 30px;
    font-family: 'Abril Fatface', cursive;
}

.block
{
    height: 40px;
    width: 120px;
    padding: 20px;
    position: absolute;
    background: #FF8888;
    box-shadow: -12px -12px 20px #3B3F45, 12px 12px 20px #2A2D32;
    border-radius: 50px;  
    float: left;
}

.user
{
    height: 20px;
    width: 100px;
    background: #6B92E5;
    box-shadow: -12px -12px 20px #3B3F45, 12px 12px 20px #2A2D32;
    border-radius: 50px;
    position: absolute;
}

.ball
{
    height: 30px;
    width: 30px;
    background: #7B81BE;
    /* box-shadow: -12px -12px 20px #3B3F45, 12px 12px 20px #2A2D32; */
    border-radius: 50%;
    position: absolute;
}

.container2
{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: lightcyan;
    width: 100%;
    height: auto;
}

#Back-btn{
    height: 50px;
    width: 50px;
    position: absolute;
    margin-left: 100px;
    transform: translateY(-90px);
 }
       

